homebridge-config-ui-x 5.0.0-beta.7 → 5.0.0-beta.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. package/CHANGELOG.md +405 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +34 -144
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +51 -50
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +2 -2
  9. package/dist/bin/platforms/darwin.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +1 -0
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +2 -2
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +4 -6
  22. package/dist/core/config/config.service.js +9 -9
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -77
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +1 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +8 -7
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +19 -79
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  46. package/dist/modules/config-editor/config-editor.service.js +62 -64
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  74. package/dist/modules/plugins/plugins.service.js +168 -103
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +22 -2
  77. package/dist/modules/server/server.controller.js +86 -18
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +24 -6
  80. package/dist/modules/server/server.service.js +165 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +17 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +45 -43
  94. package/public/3rdpartylicenses.txt +145 -62
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/{chunk-7EUQWCP5.js → chunk-2FGEOEQD.js} +2 -2
  137. package/public/chunk-2FXBIEFA.js +8 -0
  138. package/public/chunk-2OXWNNKT.js +1 -0
  139. package/public/chunk-2TIYBO73.js +1 -0
  140. package/public/chunk-2TV4AE2B.js +1 -0
  141. package/public/chunk-3C65WELO.js +1 -0
  142. package/public/chunk-3TKE62PU.js +1 -0
  143. package/public/{chunk-WNWWUCCZ.js → chunk-3VIG5M5R.js} +3 -3
  144. package/public/chunk-4NDOCFGG.js +1 -0
  145. package/public/{chunk-6TCHCTXZ.js → chunk-4XCUHCZU.js} +1 -1
  146. package/public/chunk-53GLNOVG.js +1 -0
  147. package/public/chunk-5CVOEJKH.js +1 -0
  148. package/public/chunk-7JPH5SDX.js +1 -0
  149. package/public/chunk-7K64Z2GO.js +1 -0
  150. package/public/chunk-7NH4NVWO.js +1 -0
  151. package/public/chunk-7YEHCGBQ.js +1 -0
  152. package/public/chunk-A6DLVGIC.js +1 -0
  153. package/public/chunk-AKBHSB64.js +1 -0
  154. package/public/chunk-ASBFWS7L.js +2 -0
  155. package/public/chunk-AYAHOPHC.js +1 -0
  156. package/public/chunk-BLCADRP2.js +1 -0
  157. package/public/chunk-BXNSJERZ.js +1 -0
  158. package/public/chunk-C4OILQGQ.js +1 -0
  159. package/public/chunk-C53ZM5K2.js +1 -0
  160. package/public/chunk-CBVDW3UH.js +1 -0
  161. package/public/chunk-CGQJWESO.js +1 -0
  162. package/public/chunk-CL3ZDKJG.js +1 -0
  163. package/public/chunk-CNEG5OIV.js +6 -0
  164. package/public/chunk-CUAJJ6IB.js +1 -0
  165. package/public/chunk-D6HAEAIY.js +1 -0
  166. package/public/chunk-DJKI5XBW.js +1 -0
  167. package/public/chunk-DNSPHPB6.js +1 -0
  168. package/public/{chunk-BVNJ63AC.js → chunk-EIL4KU4D.js} +2 -2
  169. package/public/chunk-ENWIG42Q.js +1 -0
  170. package/public/chunk-F2OGU5FW.js +1 -0
  171. package/public/chunk-F7KMJJSW.js +23 -0
  172. package/public/{chunk-QE7DO6J3.js → chunk-FHMZVMZK.js} +2 -2
  173. package/public/chunk-FTPISXWD.js +1 -0
  174. package/public/chunk-GFELNZRD.js +20 -0
  175. package/public/chunk-H34IWNCG.js +1 -0
  176. package/public/chunk-HT4RSDPG.js +1 -0
  177. package/public/chunk-HWQ3KYIQ.js +1 -0
  178. package/public/chunk-I2L3GMBC.js +1 -0
  179. package/public/chunk-I44OXIOM.js +1 -0
  180. package/public/{chunk-SK5UJRQU.js → chunk-I74DZSHW.js} +1 -1
  181. package/public/chunk-IU44HP4M.js +1 -0
  182. package/public/chunk-JH55PRGX.js +1 -0
  183. package/public/chunk-JMCN2SQV.js +1 -0
  184. package/public/chunk-JOBKDXBH.js +1 -0
  185. package/public/chunk-JXN4RBAX.js +1 -0
  186. package/public/chunk-LTDUXFUG.js +1 -0
  187. package/public/chunk-MNWOLOKA.js +1 -0
  188. package/public/chunk-MUNP54KM.js +1 -0
  189. package/public/chunk-OKGCGHKO.js +32 -0
  190. package/public/chunk-OLCJ3UHM.js +1 -0
  191. package/public/chunk-OR6GW5WP.js +1 -0
  192. package/public/chunk-OYHOVHGM.js +1 -0
  193. package/public/chunk-PCAN2IQ6.js +1 -0
  194. package/public/chunk-PIPVTUBD.js +1 -0
  195. package/public/chunk-PXFCEK22.js +1 -0
  196. package/public/chunk-Q3LSTRCD.js +1 -0
  197. package/public/{chunk-CCUID66K.js → chunk-Q7VA22QV.js} +1 -1
  198. package/public/chunk-QR7L4UUP.js +1 -0
  199. package/public/chunk-REUKAKIF.js +1 -0
  200. package/public/chunk-RSIXVZQ5.js +1 -0
  201. package/public/chunk-RWMXS5CJ.js +5 -0
  202. package/public/chunk-SCUB4HUR.js +1 -0
  203. package/public/chunk-TCMMHINS.js +1 -0
  204. package/public/chunk-U4V4ICSI.js +7 -0
  205. package/public/chunk-UIPWNZIB.js +1 -0
  206. package/public/chunk-UJPIGBLW.js +1 -0
  207. package/public/chunk-ULBJMQJF.js +14 -0
  208. package/public/{chunk-WHJSVGC7.js → chunk-UR24V3JB.js} +1 -1
  209. package/public/{chunk-EA5J2VEJ.js → chunk-WM3ZC7RY.js} +1 -1
  210. package/public/chunk-XCZRGZLZ.js +1 -0
  211. package/public/chunk-XSXBWJW4.js +1 -0
  212. package/public/{chunk-NDNK3KHG.js → chunk-XZLDNJOX.js} +1 -1
  213. package/public/{chunk-JZZQRLNW.js → chunk-XZR7OZ6I.js} +1 -1
  214. package/public/{chunk-YP7JWH3J.js → chunk-Y532R476.js} +1 -1
  215. package/public/chunk-YHABGXDF.js +5 -0
  216. package/public/chunk-YLJ4YK2P.js +1 -0
  217. package/public/chunk-YXEV6KOV.js +7 -0
  218. package/public/chunk-ZAFVFM3T.js +1 -0
  219. package/public/index.html +2 -2
  220. package/public/main-CCEKU4WV.js +1 -0
  221. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  222. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  223. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  224. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  225. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  226. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  227. package/public/polyfills-4F4B5XMZ.js +2 -0
  228. package/public/styles-4YGS4LAH.css +1 -0
  229. package/scripts/upgrade-install-plugin.sh +1 -1
  230. package/public/chunk-26EDYJQW.js +0 -1
  231. package/public/chunk-2JDN5J3P.js +0 -1
  232. package/public/chunk-2PMXH77A.js +0 -1
  233. package/public/chunk-3C2OQ2W5.js +0 -1
  234. package/public/chunk-3IX3CLER.js +0 -1
  235. package/public/chunk-3JROOWCZ.js +0 -1
  236. package/public/chunk-4LLA7QYB.js +0 -1
  237. package/public/chunk-4N3YQA7W.js +0 -1
  238. package/public/chunk-52L2LAHB.js +0 -1
  239. package/public/chunk-5KIRKUWH.js +0 -1
  240. package/public/chunk-6HR4EKFX.js +0 -8
  241. package/public/chunk-7LUCJVXB.js +0 -1
  242. package/public/chunk-A4HS5JYI.js +0 -1
  243. package/public/chunk-A76FDQKF.js +0 -1
  244. package/public/chunk-AAVBU64J.js +0 -1
  245. package/public/chunk-AFRS7ZFI.js +0 -1
  246. package/public/chunk-BKUGARB4.js +0 -7
  247. package/public/chunk-BPMSJ2VF.js +0 -1
  248. package/public/chunk-BS2EMJX7.js +0 -1
  249. package/public/chunk-CJIFFTFC.js +0 -1
  250. package/public/chunk-CY55AES3.js +0 -1
  251. package/public/chunk-DAYZQW6Q.js +0 -1
  252. package/public/chunk-ED5XL3PD.js +0 -1
  253. package/public/chunk-EJKB2WDE.js +0 -1
  254. package/public/chunk-FA2N3XXT.js +0 -1
  255. package/public/chunk-HSJSWZHD.js +0 -1
  256. package/public/chunk-IB5GZVXD.js +0 -1
  257. package/public/chunk-IVORLBXB.js +0 -1
  258. package/public/chunk-IW3HI4LO.js +0 -1
  259. package/public/chunk-JU4PP2VY.js +0 -32
  260. package/public/chunk-KHNBODZR.js +0 -14
  261. package/public/chunk-KQJ7ONUG.js +0 -1
  262. package/public/chunk-KRNQN3FT.js +0 -1
  263. package/public/chunk-KVW76M4O.js +0 -1
  264. package/public/chunk-LMPCXQ23.js +0 -1
  265. package/public/chunk-LV2VCDOI.js +0 -1
  266. package/public/chunk-M6SHEAQY.js +0 -1
  267. package/public/chunk-MDDU475D.js +0 -1
  268. package/public/chunk-MPVSAJDU.js +0 -5
  269. package/public/chunk-NV6GUYHV.js +0 -1
  270. package/public/chunk-NW6AFAD7.js +0 -1
  271. package/public/chunk-NZNNTHFQ.js +0 -1
  272. package/public/chunk-OKKTO3UM.js +0 -1
  273. package/public/chunk-OOHFQB4Z.js +0 -1
  274. package/public/chunk-ORPWYWCL.js +0 -5
  275. package/public/chunk-QGDVQDUP.js +0 -20
  276. package/public/chunk-QHPDGSZ6.js +0 -1
  277. package/public/chunk-QKWNCNRW.js +0 -1
  278. package/public/chunk-RDAMEJPR.js +0 -1
  279. package/public/chunk-TCSXGQNF.js +0 -1
  280. package/public/chunk-TFEVMIHT.js +0 -23
  281. package/public/chunk-TXOB7R5K.js +0 -7
  282. package/public/chunk-U2KJ2IEE.js +0 -1
  283. package/public/chunk-UAQGK64S.js +0 -1
  284. package/public/chunk-UG5DK2RQ.js +0 -2
  285. package/public/chunk-UKAOVQ6N.js +0 -1
  286. package/public/chunk-UNVMI6CK.js +0 -1
  287. package/public/chunk-US5QSVJ2.js +0 -1
  288. package/public/chunk-UWLLEMGO.js +0 -1
  289. package/public/chunk-V2TYBIZV.js +0 -1
  290. package/public/chunk-V7D5U2P3.js +0 -1
  291. package/public/chunk-WHJOLAED.js +0 -1
  292. package/public/chunk-WNVJPPO7.js +0 -1
  293. package/public/chunk-WP6BKFEA.js +0 -1
  294. package/public/chunk-WSYFRV2X.js +0 -1
  295. package/public/chunk-XLY5QPTN.js +0 -6
  296. package/public/chunk-XY74TB4S.js +0 -1
  297. package/public/chunk-ZOKILXR3.js +0 -1
  298. package/public/chunk-ZT23DWNL.js +0 -1
  299. package/public/main-6PBYD25D.js +0 -1
  300. package/public/media/01-RQ3S2L53.png +0 -0
  301. package/public/media/02-VNCG2I2A.png +0 -0
  302. package/public/media/03-HI42L4ZG.png +0 -0
  303. package/public/media/04-FJLL55LZ.png +0 -0
  304. package/public/media/05-V3EO6SPT.png +0 -0
  305. package/public/media/06-EOJZCQZN.png +0 -0
  306. package/public/media/07-KMKB5PBD.png +0 -0
  307. package/public/media/08-UQJRF6B2.png +0 -0
  308. package/public/media/09-2DJQFRHH.png +0 -0
  309. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  310. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  311. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  312. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  313. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  314. package/public/polyfills-C6JHVXJJ.js +0 -2
  315. package/public/scripts-6GVLYD7F.js +0 -62
  316. package/public/styles-EG5MFQEM.css +0 -1
  317. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
package/CHANGELOG.md CHANGED
@@ -2,14 +2,215 @@
2
2
 
3
3
  All notable changes to `homebridge-config-ui-x` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
4
4
 
5
- ## BETA
5
+ ## v5.0.0 (Unreleased)
6
6
 
7
7
  ### ⚠️ Breaking Changes
8
8
 
9
- - This version of the Homebridge UI will drop support for:
10
- - Node.js `v16` and earlier, so please update to `v18` or `v20` or `v22` - [more info on updating](https://github.com/homebridge/homebridge/wiki/How-To-Update-Node.js)
11
- - Raspberry Pi devices running on the `armv6` architecture (like the Pi 1 and Pi Zero) - please update your hardware
12
- - Instances using `pnpm` as the package manager - consider updating your Homebridge instance to use npm instead - [more info on updating](https://github.com/homebridge/homebridge-apt-pkg/blob/latest/README.md#using-apt)
9
+ - This version of the Homebridge UI:
10
+ - Is compatible with Homebridge `v1` and `v2-beta`
11
+ - Drops support for Node.js `v18` and earlier, so please update to `v20` or `v22` - [more info on updating](https://github.com/homebridge/homebridge/wiki/How-To-Update-Node.js)
12
+ - Drops support for Raspberry Pi devices running on the `armv6` architecture (like the Pi 1 and Pi Zero) - please update your hardware
13
+ - Drops support for instances using `pnpm` as the package manager - consider updating your Homebridge instance to use npm instead - [more info on updating](https://github.com/homebridge/homebridge-apt-pkg/blob/latest/README.md#using-apt)
14
+
15
+ ### UI Changes
16
+
17
+ - updates to the `fi.json` language file (#2253) (@l1500s)
18
+ - update default dashboard layout
19
+
20
+ ### Other Changes
21
+
22
+ - retire use of `pnpm` and code references
23
+ - bump the default node version from 20 to 22
24
+ - make terminal enabled by default on new macOS hb-service installs
25
+ - update `fastify` and `nestjs` dependencies
26
+ - remove `log.tail` and `log.systemd` ui settings
27
+ - set service mode as default, remove standalone
28
+
29
+ ### Homebridge Dependencies
30
+
31
+ - `@homebridge/hap-client` @ `v2.2.0-beta`
32
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.12.0`
33
+ - `@homebridge/plugin-ui-utils` @ `v2.0.2`
34
+
35
+ ## v4.76.0 (Unreleased)
36
+
37
+ ### UI Changes
38
+
39
+ - improvements to various accessory tiles and modals
40
+ - fix occasional issue in backup/restore, revert recent change
41
+ - improvements to plugin config validation
42
+ - use `ajv-keywords` to allow validation of unique properties in arrays
43
+
44
+ ### Other Changes
45
+
46
+ - upgrade to angular `v20`
47
+
48
+ ### Homebridge Dependencies
49
+
50
+ - `@homebridge/hap-client` @ `v2.2.0`
51
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
52
+ - `@homebridge/plugin-ui-utils` @ `v2.0.2`
53
+
54
+ ## v4.75.0 (2025-05-25)
55
+
56
+ ### UI Changes
57
+
58
+ - updates to the uk.json language file (#2436) (@xrust83)
59
+ - updates to the th.json language file (#2437) (@tomzt)
60
+ - updates to the `manual_update_command` language string
61
+ - show restart modal after installing an already configured plugin
62
+ - add long click modal for lock mechanism + management
63
+ - improvements to heater/humidifier/thermostat icon+modal
64
+ - improvements to battery icon
65
+
66
+ ### Homebridge Dependencies
67
+
68
+ - `@homebridge/hap-client` @ `v2.1.0`
69
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
70
+ - `@homebridge/plugin-ui-utils` @ `v2.0.2`
71
+
72
+ ## v4.74.0 (2025-05-18)
73
+
74
+ ### UI Changes
75
+
76
+ - improve plugin manage version ui (#2424) (@apexskier)
77
+ - capitalise time zone in system info widget
78
+ - add architecture to system info widget
79
+ - add checks on system for updating to ui v5
80
+ - added screen for ui v5 readiness check
81
+ - add color temperature to lightbulb screen (@justjam2013)
82
+ - add temperature units to heatercooler (@justjam2013)
83
+ - add valve control modal (@justjam2013)
84
+ - update speaker tile + control modal (@justjam2013)
85
+
86
+ ### Homebridge Dependencies
87
+
88
+ - `@homebridge/hap-client` @ `v2.1.0`
89
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
90
+ - `@homebridge/plugin-ui-utils` @ `v2.0.2`
91
+
92
+ ## v4.73.0 (2025-04-19)
93
+
94
+ ### UI Changes
95
+
96
+ - updates to the `en.json` language file (#2389) (@HenryGelderbloem)
97
+ - updates to the `de.json` language file (#2403) (@Staubgeborener)
98
+ - updates to the `de.json` language file (#2404) (@Staubgeborener)
99
+ - improve icons in bridges widget
100
+ - fix individual accessory deselect on remove modal
101
+ - improve accessory icons for CO and CO2 sensors
102
+ - make secondary blue colour in light mode more distinct
103
+
104
+ ### Other Changes
105
+
106
+ - fix do not include `--omit=dev` flag in `pnpm` commands
107
+ - add lint job for checking all pull requests
108
+ - allow package mode users to disable the terminal
109
+ - various copilot improvements for file paths
110
+ - updated dependencies
111
+ - remove `ubuntu-20.04` from actions as unsupported
112
+
113
+ ### Homebridge Dependencies
114
+
115
+ - `@homebridge/hap-client` @ `v2.1.0`
116
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
117
+ - `@homebridge/plugin-ui-utils` @ `v2.0.2`
118
+
119
+ ## v4.72.0 (2025-03-22)
120
+
121
+ ### UI Changes
122
+
123
+ - updates to the `th.json` language file (#2365) (@tomzt)
124
+ - updates to the `es.json` language file (#2376) (@kyrokode)
125
+ - updates to the `id.json` language file (#2377) (@dwaan)
126
+ - updates to the `ru.json` language file (#2384) (@SeregaTarasov)
127
+ - fixed issue with UI config incorrectly reporting as invalid
128
+ - don't allow adding multiple config blocks for singular plugins
129
+
130
+ ### Other Changes
131
+
132
+ - updated dependencies
133
+
134
+ ### Homebridge Dependencies
135
+
136
+ - `@homebridge/hap-client` @ `v2.0.6`
137
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
138
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
139
+
140
+ ## v4.71.2 (2025-02-23)
141
+
142
+ ### Other Changes
143
+
144
+ - fix alpha/beta update checks for bundled ui (#2363) (@dnicolson)
145
+ - fix ui config validation when default theme selected
146
+
147
+ ### Homebridge Dependencies
148
+
149
+ - `@homebridge/hap-client` @ `v2.0.5`
150
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
151
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
152
+
153
+ ## v4.71.1 (2025-02-22)
154
+
155
+ ### UI Changes
156
+
157
+ - updates to the `uk.json` language file (#2352) (@xrust83)
158
+ - add missing add section button to plugin config screens
159
+ - improve active/stale bridge detection
160
+ - fix error state on plugin search input
161
+
162
+ ### Other Changes
163
+
164
+ - re-add `reflect-metadata` to `dependencies` in `package.json`
165
+
166
+ ### Homebridge Dependencies
167
+
168
+ - `@homebridge/hap-client` @ `v2.0.5`
169
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
170
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
171
+
172
+ ## v4.71.0 (2025-02-09)
173
+
174
+ ### UI Changes
175
+
176
+ - updates to the `uk.json` language file (#2348) (@xrust83)
177
+ - allow docker users to disable the UI terminal via env
178
+ - set `HOMEBRIDGE_CONFIG_UI_TERMINAL_ENABLED=0`
179
+ - note that this has not been extensively tested
180
+ - fix opening control accessory modal on mobile devices
181
+
182
+ ### Other Changes
183
+
184
+ - update `@ng-formworks/` dependencies
185
+
186
+ ### Homebridge Dependencies
187
+
188
+ - `@homebridge/hap-client` @ `v2.0.5`
189
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
190
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
191
+
192
+ ## v4.70.0 (2025-02-08)
193
+
194
+ ### UI Changes
195
+
196
+ - updates to the `th.json` language file (#2338) (@tomzt)
197
+ - improvements to long-click accessory control
198
+ - also fixes accessory and room rearranging on the accessories page
199
+ - accessory and status page layout will now be locked by default on each visit
200
+ - add message for docker/synology users in node update info modal
201
+
202
+ ### Other Changes
203
+
204
+ - append `--omit=dev` to `npm i` commands
205
+ - clean up `npm` cache before any install/uninstall
206
+
207
+ ### Homebridge Dependencies
208
+
209
+ - `@homebridge/hap-client` @ `v2.0.5`
210
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
211
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
212
+
213
+ ## v4.69.0 (2025-01-25)
13
214
 
14
215
  ### ⚠️ Plugin Config Validation
15
216
 
@@ -23,48 +224,221 @@ This version of Homebridge UI adds validation to plugin config screens. This doe
23
224
 
24
225
  If you have a plugin which can be configured multiple times, then an icon will be shown on each configuration block.
25
226
 
26
- For custom UIs developed using the `@homebridge/plugin-ui-utils` package, the `Save` button will be enabled at all times by default.
27
- In `@homebridge/plugin-ui-utils@v2.0.0`, two new methods have been added which allow you to disable and enable the `Save` button:
28
- - `homebridge.disableSaveButton()`
29
- - `homebridge.enableSaveButton()`
30
-
31
- When the button is enabled, the validation icon will be visible showing the status of the configuration. When the button is disabled, the validation icon will be hidden.
32
- If your plugin implements these methods, but the user is on an older version of the Homebridge UI, then the methods will have no effect, but not throw an error. The `Save` button will always be enabled.
33
-
34
227
  Plugin developers:
35
228
 
36
- - Please do not rely on this validation and assume that a user's configuration will be valid
37
- - All plugins should still validate a configuration when the plugin is started
229
+ - Please do not rely on this validation and assume that a user's configuration will be valid: you should still validate the user's config on plugin startup
38
230
  - Remember that some users do not use the UI at all, and other users may prefer to configure using raw `JSON` rather than config screens
231
+ - For custom UI screens, the validation icon will be hidden when the save button is disabled (using `homebridge.disableSaveButton()` from `@homebridge/plugin-ui-utils`)
39
232
  - Please report any cases where the validation is not working as expected
40
233
 
41
234
  ### UI Changes
42
235
 
43
- - updates to the `de.json` language file (#2249) (@Staubgeborener)
44
- - updates to the `ko.json` language file (#2251) (@alphaorderly)
45
- - implement and allow switching to scoped plugins
236
+ - updates to the `uk.json` language file (#2312) (@xrust83)
237
+ - updates to the `cs.json` language file (#2332) (@DavidHuljak)
238
+ - fix typos in hb/ui settings schemas (#2317) (@dnicolson)
239
+ - fix margins in update plugin modal
46
240
  - add plugin config validation functionality
47
241
  - refactor status and child bridge widgets
48
- - update default dashboard layout
49
- - logo and `homebridge` text should link to status page
242
+ - the existing 'status' widget has been renamed to 'update info' widget
243
+ - the existing 'child bridges' widget has been renamed to 'bridges' widget
244
+ - the homebridge status (from the old status widget) is now shown as a bridge in the new bridges widget
245
+ - node update information has been added to the new update info widget
246
+ - a widget option has been added to hide node update information: this may be useful for docker/synology users
247
+ - homebridge and ui version information has been moved from the footer to the new update info widget
248
+ - add 'homebridge name' setting to settings page
249
+ - migrate bootstrap from `v4` to `v5`
250
+ - fix plugin config/bridge screens for certain plugins
251
+ - add lighting mode option for terminal and log widgets
252
+ - only available when the UI is already in light mode
253
+ - fix long press on mobile devices
254
+ - control fan rotation direction from the ui
50
255
 
51
256
  ### Other Changes
52
257
 
53
- - update screenshots (for readme file)
54
- - retire use of `pnpm` and code references
55
- - enable strict config validation for the UI
56
- - bump the default node version from 20 to 22
57
- - make terminal enabled by default on new macOS hb-service installs
58
- - update node pty beta `v0.12.0-beta`
59
- - update angular from `v18` to `v19`
60
- - update `@homebridge/plugin-ui-utils` to `v2.0.0`
258
+ - improvements to GH actions and build processes (@NorthernMan54)
259
+
260
+ ### Homebridge Dependencies
261
+
262
+ - `@homebridge/hap-client` @ `v2.0.5`
263
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
264
+ - `@homebridge/plugin-ui-utils` @ `v2.0.1`
265
+
266
+ ## v4.68.0 (2025-01-08)
267
+
268
+ Happy 2025 to all our users! 🎉
269
+
270
+ ### UI Changes
271
+
272
+ - updates to the `cs.json` language file (#2311) (@DavidHuljak)
273
+ - improved messaging on plugin child bridge modal
274
+ - further improvements to plugin search
275
+ - implement and allow switching to scoped plugins
276
+ - merge plugin info and verified modals
277
+ - condensing plugin card into title + three lines of description
278
+ - consistent formatting of child bridge names across the ui
279
+ - general improvements across the ui
280
+ - status page:
281
+ - individual widget setting form design made consistent with other forms
282
+ - added pairing status to qr code widget
283
+ - plugins page:
284
+ - visual improvements to plugin child bridge settings modal
285
+ - allow plugins to disable/enable the save button in custom uis (see below section)
286
+ - allow configuring [multiple accessories on the same child bridge](https://github.com/homebridge/homebridge/wiki/Child-Bridges#multiple-accessories-on-the-same-child-bridge) via the ui
287
+ - accessories page:
288
+ - changed accessory spanner icon to info icon (more descriptive)
289
+ - accessory info modal redesigned and provides more info where possible like the accessory UUID (including a link to remove from the cache)
290
+ - added support modal with some info about rooms and accessories (visible on desktop)
291
+ - json config page:
292
+ - redesigned restore modal to be more consistent with other modals
293
+ - settings page:
294
+ - chevron icons replaced with arrow-right icons
295
+ - removed restore modal from settings page and is accessible from the backup modal
296
+ - backup modal redesigned to be more consistent with other modals
297
+ - added new display -> menu mode setting which allows keeping the side menu from expanding out on desktop
298
+ - redesigned and improved accessories and bridges sections and modals
299
+ - users page:
300
+ - add user and edit user modals redesigned to be more consistent with other modals
301
+ - user card updated with icon buttons for edit/delete rather than text buttons
302
+
303
+ ### Plugin Custom UI Changes
304
+
305
+ The UI has recently been updated with `@homebridge/plugin-ui-utils` @ `v2.0.0`, which includes a new feature to allow plugin developers to dynamically enable and disable the `Save` button in the custom UI modal.
306
+ Two new methods have been added for this purpose:
307
+
308
+ - `homebridge.disableSaveButton()`
309
+ - `homebridge.enableSaveButton()`
310
+
311
+ Developers: to maintain compatibility with older versions of the Homebridge UI, it is recommended to check if the methods exist before calling them in your custom UIs:
312
+
313
+ - `homebridge.disableSaveButton?.()`
314
+ - `homebridge.enableSaveButton?.()`
315
+
316
+ ### Other Changes
317
+
318
+ - auto-fix ui theme setting property if existing value is not valid
319
+ - do not allow `armv6l` users to update to UI `v5`
61
320
 
62
321
  ### Homebridge Dependencies
63
322
 
64
- - `@homebridge/hap-client` @ `v2.0.5-beta`
65
- - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.12.0-beta`
323
+ - `@homebridge/hap-client` @ `v2.0.5`
324
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
325
+ - `@homebridge/plugin-ui-utils` @ `v2.0.0`
326
+
327
+ ## v4.67.0 (2024-12-28)
328
+
329
+ ### UI Changes
330
+
331
+ - add explanation of deleting child bridges when un-toggling
332
+ - add filtering to search to improve results (#2286) (@justjam2013) (fixes [#2266](https://github.com/homebridge/homebridge-config-ui-x/issues/2266))
333
+ - fix spacing issue with hidden accessories
334
+ - make margins consistent of un/lock buttons on status screen
335
+ - fix ui not restarting properly after updating the ui
336
+ - use broom icon in remove bridge accessories (to match similar modal from plugin menu)
337
+
338
+ ### Other Changes
339
+
340
+ - improve and finish up previous angular migration
341
+ - update `hap-client` + `plugin-ui-utils` hb dependencies
342
+ - update dependencies
343
+ - improve lint sorting of imports
344
+
345
+ ### Homebridge Dependencies
346
+
347
+ - `@homebridge/hap-client` @ `v2.0.5`
348
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
66
349
  - `@homebridge/plugin-ui-utils` @ `v2.0.0`
67
350
 
351
+ ## v4.66.0 (2024-12-25)
352
+
353
+ ### UI Changes
354
+
355
+ - fix verified plugins link in support module (fixes [#2295](https://github.com/homebridge/homebridge-config-ui-x/issues/2295))
356
+ - add missing modal footer `<div>`s to accessory control modals
357
+ - fix radio button groups in certain accessory control modals (fixes [#2294](https://github.com/homebridge/homebridge-config-ui-x/issues/2294))
358
+
359
+ ### Other Changes
360
+
361
+ - format svg files nicely as part of lint
362
+ - upgrade angular from `v18` to `v19`
363
+ - delete unpaired bridges when toggling bridges off (#2284) (@justjam2013) (fixes [#2257](https://github.com/homebridge/homebridge-config-ui-x/issues/2257))
364
+
365
+ ### Homebridge Dependencies
366
+
367
+ - `@homebridge/hap-client` @ `v1.10.2`
368
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
369
+ - `@homebridge/plugin-ui-utils` @ `v1.0.3`
370
+
371
+ ## v4.65.2 (2024-12-15)
372
+
373
+ ### UI Changes
374
+
375
+ - Rollback recent changes to plugin search (#2289) (@justjam2013)
376
+
377
+ ### Homebridge Dependencies
378
+
379
+ - `@homebridge/hap-client` @ `v1.10.2`
380
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
381
+ - `@homebridge/plugin-ui-utils` @ `v1.0.3`
382
+
383
+ ## v4.65.1 (2024-12-13)
384
+
385
+ ### UI Changes
386
+
387
+ - updates to the `th.json` language file (#2271) (@tomzt)
388
+ - updates to the `de.json` language file (#2250) (@Staubgeborener)
389
+ - Remove unrelated plugins from search (#2272) (@justjam2013)
390
+
391
+ ### Other Changes
392
+
393
+ - fix types + update dependencies
394
+ - fix attach artifacts to release workflow
395
+
396
+ ### Homebridge Dependencies
397
+
398
+ - `@homebridge/hap-client` @ `v1.10.2`
399
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
400
+ - `@homebridge/plugin-ui-utils` @ `v1.0.3`
401
+
402
+ ## v4.65.0 (2024-12-08)
403
+
404
+ ### UI Changes
405
+
406
+ - updates to the `uk.json` language file (#2262) (@xrust83)
407
+ - logo and `homebridge` text should link to status page
408
+ - Add icons for shower head and water faucet valve types (#2267) (@justjam2013)
409
+ - Removed conditional for displaying search exit component (#2269) (@justjam2013)
410
+
411
+ ### Other Changes
412
+
413
+ - Fix typo in console message (#2264) (@markholland)
414
+ - updated dependencies
415
+
416
+ ### Homebridge Dependencies
417
+
418
+ - `@homebridge/hap-client` @ `v1.10.2`
419
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
420
+ - `@homebridge/plugin-ui-utils` @ `v1.0.3`
421
+
422
+ ## v4.64.0 (2024-11-30)
423
+
424
+ ### UI Changes
425
+
426
+ - updates to the `de.json` language file (#2249) (@Staubgeborener)
427
+ - updates to the `ko.json` language file (#2251) (@alphaorderly)
428
+ - updates to the `uk.json` language file (#2255) (@xrust83)
429
+ - add reload menu item when using as a PWA
430
+
431
+ ### Other Changes
432
+
433
+ - dependency updates
434
+ - fix npm search max character limit
435
+
436
+ ### Homebridge Dependencies
437
+
438
+ - `@homebridge/hap-client` @ `v1.10.2`
439
+ - `@homebridge/node-pty-prebuilt-multiarch` @ `v0.11.14`
440
+ - `@homebridge/plugin-ui-utils` @ `v1.0.3`
441
+
68
442
  ## v4.63.0 (2024-11-17)
69
443
 
70
444
  ### UI Changes
@@ -563,7 +937,7 @@ Merry Christmas and Happy Holidays to all our users celebrating later this month
563
937
  - Various changes to the plugin cards
564
938
  - Plugin settings now accessible from the plugin card menu, called 'Config'
565
939
  - Icons: plugin devs can request an icon for their verified plugin at:
566
- - https://github.com/homebridge/verified/issues/new/choose
940
+ - https://github.com/homebridge/plugins/issues/new/choose
567
941
 
568
942
  ### UI Changes
569
943
 
package/CONTRIBUTING.md CHANGED
@@ -2,11 +2,12 @@
2
2
 
3
3
  Pull requests are welcome from everyone.
4
4
 
5
- This project is written in [TypeScript](https://www.typescriptlang.org/) and uses [Nest.js](https://nestjs.com/) for the server and [Angular](https://angular.io/) for the client UI.
5
+ This project is written in [TypeScript](https://www.typescriptlang.org/) and uses [Nest.js](https://nestjs.com/) for the server and [Angular](https://angular.dev/) for the client UI.
6
6
 
7
7
  ## Getting Setup
8
8
 
9
- _Note: The Raspberry Pi and similar boards do not meet the memory or CPU requirements required to set up the development environment._
9
+ > [!NOTE]
10
+ > The Raspberry Pi and similar boards do not meet the memory or CPU requirements required to set up the development environment.
10
11
 
11
12
  First, remove any globally installed versions of `homebridge-config-ui-x` you may have installed on your development machine:
12
13
 
@@ -38,7 +39,7 @@ Symlink your development directory to global:
38
39
  npm link
39
40
  ```
40
41
 
41
- If you don't have homebridge installed already run:
42
+ If you don't have Homebridge installed already run:
42
43
 
43
44
  ```sh
44
45
  npm install -g homebridge
@@ -52,7 +53,7 @@ This will start the Angular development server on port `4200` and a standalone s
52
53
  npm run watch
53
54
  ```
54
55
 
55
- You should now be able to navigate to `https://localhost:4200` in your browser which will connect to your `homebridge` instance running on port `8581`. The UI will automatically reload whenever you make changes to the code.
56
+ You should now be able to navigate to `https://localhost:4200` in your browser which will connect to your Homebridge instance running on port `8581`. The UI will automatically reload whenever you make changes to the code.
56
57
 
57
58
  ## Running Tests
58
59
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2024 Homebridge
3
+ Copyright (c) 2023-2025 Homebridge
4
4
  Copyright (c) 2017-2023 oznu <dev@oz.nu>
5
5
  Copyright (c) 2017 Michael Kellsy
6
6