homebridge-config-ui-x 5.4.2-beta.4 → 5.4.2-beta.40

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 (219) hide show
  1. package/CHANGELOG.md +36 -13
  2. package/dist/bin/hb-service.js +1 -1
  3. package/dist/bin/hb-service.js.map +1 -1
  4. package/dist/core/auth/auth.controller.d.ts +2 -0
  5. package/dist/core/config/config.interfaces.d.ts +64 -0
  6. package/dist/core/config/config.interfaces.js +3 -0
  7. package/dist/core/config/config.interfaces.js.map +1 -0
  8. package/dist/core/config/config.service.d.ts +7 -22
  9. package/dist/core/config/config.service.js +7 -2
  10. package/dist/core/config/config.service.js.map +1 -1
  11. package/dist/core/config/config.startup.d.ts +2 -12
  12. package/dist/core/config/config.startup.js +11 -3
  13. package/dist/core/config/config.startup.js.map +1 -1
  14. package/dist/core/spa/spa-html.service.d.ts +5 -0
  15. package/dist/core/spa/spa-html.service.js +38 -0
  16. package/dist/core/spa/spa-html.service.js.map +1 -0
  17. package/dist/core/spa/spa.filter.d.ts +3 -0
  18. package/dist/core/spa/spa.filter.js +22 -2
  19. package/dist/core/spa/spa.filter.js.map +1 -1
  20. package/dist/globalDefaults.js +3 -0
  21. package/dist/globalDefaults.js.map +1 -1
  22. package/dist/main.js +18 -3
  23. package/dist/main.js.map +1 -1
  24. package/dist/modules/accessories/accessories.service.js +5 -1
  25. package/dist/modules/accessories/accessories.service.js.map +1 -1
  26. package/dist/modules/backup/backup.service.js +4 -1
  27. package/dist/modules/backup/backup.service.js.map +1 -1
  28. package/dist/modules/config-editor/config-editor.controller.d.ts +3 -3
  29. package/dist/modules/config-editor/config-editor.service.d.ts +3 -2
  30. package/dist/modules/config-editor/config-editor.service.js +38 -15
  31. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  32. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  33. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +2 -1
  34. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  35. package/dist/modules/log/log.gateway.d.ts +1 -1
  36. package/dist/modules/log/log.interfaces.d.ts +4 -0
  37. package/dist/modules/log/log.interfaces.js +3 -0
  38. package/dist/modules/log/log.interfaces.js.map +1 -0
  39. package/dist/modules/log/log.service.d.ts +1 -4
  40. package/dist/modules/log/log.service.js.map +1 -1
  41. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +1 -1
  42. package/dist/modules/platform-tools/terminal/terminal.interfaces.d.ts +8 -0
  43. package/dist/modules/platform-tools/terminal/terminal.interfaces.js +3 -0
  44. package/dist/modules/platform-tools/terminal/terminal.interfaces.js.map +1 -0
  45. package/dist/modules/platform-tools/terminal/terminal.service.d.ts +1 -8
  46. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  47. package/dist/modules/plugins/plugins.controller.d.ts +5 -5
  48. package/dist/modules/plugins/plugins.interfaces.d.ts +211 -0
  49. package/dist/modules/plugins/plugins.interfaces.js +3 -0
  50. package/dist/modules/plugins/plugins.interfaces.js.map +1 -0
  51. package/dist/modules/plugins/plugins.service.d.ts +2 -1
  52. package/dist/modules/plugins/plugins.service.js +33 -15
  53. package/dist/modules/plugins/plugins.service.js.map +1 -1
  54. package/dist/modules/server/server.controller.d.ts +3 -0
  55. package/dist/modules/server/server.controller.js +13 -0
  56. package/dist/modules/server/server.controller.js.map +1 -1
  57. package/dist/modules/server/server.service.js +6 -4
  58. package/dist/modules/server/server.service.js.map +1 -1
  59. package/dist/modules/status/status.controller.d.ts +2 -2
  60. package/dist/modules/status/status.gateway.d.ts +5 -5
  61. package/dist/modules/status/status.interfaces.d.ts +27 -0
  62. package/dist/modules/status/status.interfaces.js +10 -0
  63. package/dist/modules/status/status.interfaces.js.map +1 -0
  64. package/dist/modules/status/status.service.d.ts +2 -29
  65. package/dist/modules/status/status.service.js +4 -9
  66. package/dist/modules/status/status.service.js.map +1 -1
  67. package/package.json +16 -11
  68. package/public/3rdpartylicenses.txt +16 -40
  69. package/public/assets/monaco/ThirdPartyNotices.txt +448 -0
  70. package/public/assets/monaco/min/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  71. package/public/assets/monaco/min/vs/base/worker/workerMain.js +31 -0
  72. package/public/assets/monaco/min/vs/basic-languages/shell/shell.js +10 -0
  73. package/public/assets/monaco/min/vs/editor/editor.main.css +8 -0
  74. package/public/assets/monaco/min/vs/editor/editor.main.js +798 -0
  75. package/public/assets/monaco/min/vs/language/json/jsonMode.js +19 -0
  76. package/public/assets/monaco/min/vs/language/json/jsonWorker.js +42 -0
  77. package/public/assets/monaco/min/vs/loader.js +11 -0
  78. package/public/chunk-2DNOEBYN.js +1 -0
  79. package/public/chunk-32NC3IVK.js +16 -0
  80. package/public/chunk-354C3X7T.js +19 -0
  81. package/public/chunk-3G7IDMFU.js +1 -0
  82. package/public/{chunk-U6ROY5ZN.js → chunk-3YOGUN4W.js} +1 -1
  83. package/public/chunk-42EXBOPA.js +1 -0
  84. package/public/chunk-4FC5JCBA.js +1 -0
  85. package/public/{chunk-6N2SOTOL.js → chunk-4HJOARLT.js} +2 -2
  86. package/public/chunk-4QZG5IBV.js +1 -0
  87. package/public/chunk-4YMIOPY5.js +1 -0
  88. package/public/chunk-5AW36TN3.js +1 -0
  89. package/public/chunk-5BAB4FLA.js +1 -0
  90. package/public/{chunk-CQKCDD3I.js → chunk-5YEYAEII.js} +1 -1
  91. package/public/{chunk-BEYU5GMW.js → chunk-6DTD6NF3.js} +2 -2
  92. package/public/chunk-6TWUTMWM.js +40 -0
  93. package/public/{chunk-P5LYIXY6.js → chunk-A7SU4MHQ.js} +1 -1
  94. package/public/chunk-AACIDDLQ.js +9 -0
  95. package/public/chunk-BG3D2DZW.js +1 -0
  96. package/public/chunk-CWZT5DC3.js +1 -0
  97. package/public/{chunk-OPYWX2UT.js → chunk-D2HNCCB6.js} +1 -1
  98. package/public/{chunk-3DFE4GXY.js → chunk-EOXVJQVC.js} +1 -1
  99. package/public/chunk-FON7X6PI.js +1 -0
  100. package/public/chunk-FSS52C6M.js +1 -0
  101. package/public/chunk-GBKV42JT.js +1 -0
  102. package/public/chunk-GC5ZVIAR.js +1 -0
  103. package/public/chunk-HNJPAXQ5.js +1 -0
  104. package/public/{chunk-QNF5ENQG.js → chunk-HQBRFFPL.js} +1 -1
  105. package/public/chunk-I32XNZAC.js +1 -0
  106. package/public/{chunk-FVSVQWIM.js → chunk-IDS6CACH.js} +1 -1
  107. package/public/{chunk-G3CSSNW3.js → chunk-IL6JW6PB.js} +1 -1
  108. package/public/chunk-JPNMUW6S.js +1 -0
  109. package/public/{chunk-WMIMAPZH.js → chunk-KCLLEPG3.js} +1 -1
  110. package/public/chunk-NC7XPNIV.js +1 -0
  111. package/public/{chunk-DD4UIDDU.js → chunk-NHATITBP.js} +1 -1
  112. package/public/chunk-NLE7I54S.js +1 -0
  113. package/public/{chunk-E5M5VUTV.js → chunk-NNGM3PUS.js} +1 -1
  114. package/public/chunk-NW5L2FIY.js +1 -0
  115. package/public/chunk-ONSFSQPA.js +1 -0
  116. package/public/{chunk-ZVJPMFYX.js → chunk-PHIVEHY2.js} +1 -1
  117. package/public/chunk-PRNMO4E2.js +5 -0
  118. package/public/chunk-QKQFWEQY.js +3 -0
  119. package/public/{chunk-NFD7N6TO.js → chunk-QTUF3RXY.js} +1 -1
  120. package/public/{chunk-JWSIULJX.js → chunk-R6ROHI5E.js} +1 -1
  121. package/public/chunk-R7VTFW66.js +1 -0
  122. package/public/{chunk-WCMFALUQ.js → chunk-RJ7DGOUE.js} +1 -1
  123. package/public/chunk-RMBCZ6PE.js +1 -0
  124. package/public/chunk-RR2V2D4G.js +1 -0
  125. package/public/chunk-RTZVASBV.js +1 -0
  126. package/public/chunk-S2UVMNTQ.js +1 -0
  127. package/public/chunk-S4DTLIZU.js +1 -0
  128. package/public/{chunk-LIIIEDKB.js → chunk-SGMZN62K.js} +1 -1
  129. package/public/chunk-SLFDMPM6.js +49 -0
  130. package/public/chunk-TGMT2CPD.js +4 -0
  131. package/public/chunk-TTSDYAR7.js +1 -0
  132. package/public/chunk-TUN7H57E.js +1 -0
  133. package/public/chunk-UOOMSN4Q.js +1 -0
  134. package/public/chunk-USGWBGHR.js +1 -0
  135. package/public/{chunk-LOC52TG7.js → chunk-UWI7PQIM.js} +1 -1
  136. package/public/chunk-VCWEPDEP.js +1 -0
  137. package/public/chunk-VIHCQCPQ.js +1 -0
  138. package/public/{chunk-5KZJLK3B.js → chunk-VOI666RM.js} +4 -4
  139. package/public/chunk-VSX4HMXR.js +1 -0
  140. package/public/chunk-W5NNVVIP.js +1 -0
  141. package/public/chunk-WALOI7QT.js +1 -0
  142. package/public/chunk-XEMTN2GZ.js +1 -0
  143. package/public/chunk-XLPPT7E7.js +4 -0
  144. package/public/chunk-YIXIXCO4.js +2 -0
  145. package/public/chunk-ZX7APSEP.js +1 -0
  146. package/public/index.html +2 -2
  147. package/public/main-WMR4TUCJ.js +1 -0
  148. package/public/polyfills-5KWHJ7II.js +2 -0
  149. package/public/styles-643WFJRY.css +1 -0
  150. package/config.schema.json +0 -590
  151. package/public/assets/hap-icons/light-bulb.svg +0 -25
  152. package/public/assets/hap-icons/outlet.svg +0 -25
  153. package/public/assets/hap-icons/switch.svg +0 -25
  154. package/public/assets/hap-icons/unknown.svg +0 -25
  155. package/public/assets/monaco-0.21.3/README.md +0 -96
  156. package/public/assets/monaco-0.21.3/ThirdPartyNotices.txt +0 -283
  157. package/public/assets/monaco-0.21.3/min/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  158. package/public/assets/monaco-0.21.3/min/vs/base/worker/workerMain.js +0 -160
  159. package/public/assets/monaco-0.21.3/min/vs/basic-languages/shell/shell.js +0 -7
  160. package/public/assets/monaco-0.21.3/min/vs/editor/editor.main.css +0 -6
  161. package/public/assets/monaco-0.21.3/min/vs/editor/editor.main.js +0 -2368
  162. package/public/assets/monaco-0.21.3/min/vs/editor/editor.main.nls.js +0 -39
  163. package/public/assets/monaco-0.21.3/min/vs/language/json/jsonMode.js +0 -7
  164. package/public/assets/monaco-0.21.3/min/vs/language/json/jsonWorker.js +0 -7
  165. package/public/assets/monaco-0.21.3/min/vs/loader.js +0 -38
  166. package/public/assets/monaco-0.21.3/package.json +0 -38
  167. package/public/chunk-2ETJ2W67.js +0 -1
  168. package/public/chunk-2IPYU27V.js +0 -20
  169. package/public/chunk-4IS25CEL.js +0 -1
  170. package/public/chunk-4ZMTZF3W.js +0 -1
  171. package/public/chunk-5J7OMTCR.js +0 -1
  172. package/public/chunk-5KFQUVTY.js +0 -1
  173. package/public/chunk-6FXNHKMA.js +0 -1
  174. package/public/chunk-6MRWZBRB.js +0 -1
  175. package/public/chunk-A76CGVLE.js +0 -1
  176. package/public/chunk-ABEVAIAL.js +0 -1
  177. package/public/chunk-ABOVGRBT.js +0 -1
  178. package/public/chunk-AIKHSPDS.js +0 -1
  179. package/public/chunk-CV5P3VHY.js +0 -1
  180. package/public/chunk-D32NWYHS.js +0 -1
  181. package/public/chunk-EUPINTFY.js +0 -3
  182. package/public/chunk-EUQRX7LQ.js +0 -1
  183. package/public/chunk-H6CYTQYR.js +0 -1
  184. package/public/chunk-M5HYAGSQ.js +0 -1
  185. package/public/chunk-MCRAOLRB.js +0 -1
  186. package/public/chunk-NRU4C4QO.js +0 -1
  187. package/public/chunk-NRVKNZMW.js +0 -14
  188. package/public/chunk-NVSHJ7LK.js +0 -1
  189. package/public/chunk-OIV4KXSV.js +0 -1
  190. package/public/chunk-OUS4RGQP.js +0 -1
  191. package/public/chunk-PFU546XJ.js +0 -1
  192. package/public/chunk-PMVD4FUJ.js +0 -9
  193. package/public/chunk-PP5MH7GY.js +0 -2
  194. package/public/chunk-QABGEKAZ.js +0 -2
  195. package/public/chunk-QBGF33DL.js +0 -1
  196. package/public/chunk-QK7Z3CEZ.js +0 -1
  197. package/public/chunk-RPTZSO5O.js +0 -1
  198. package/public/chunk-RT24VDZP.js +0 -1
  199. package/public/chunk-S6BASE5W.js +0 -1
  200. package/public/chunk-S6W546ZE.js +0 -4
  201. package/public/chunk-SD2QP7RK.js +0 -1
  202. package/public/chunk-SMCVOWDV.js +0 -1
  203. package/public/chunk-T3KHQZNL.js +0 -1
  204. package/public/chunk-TG5OFUMM.js +0 -1
  205. package/public/chunk-UNUGLKWP.js +0 -1
  206. package/public/chunk-UT3VB4SC.js +0 -49
  207. package/public/chunk-VWR3K52A.js +0 -1
  208. package/public/chunk-WBMAWHKA.js +0 -12
  209. package/public/chunk-XEXJIDEI.js +0 -4
  210. package/public/chunk-XWYKEZQQ.js +0 -4
  211. package/public/chunk-YERWTYFA.js +0 -1
  212. package/public/chunk-YSZKQXWK.js +0 -1
  213. package/public/chunk-ZKETDQ54.js +0 -1
  214. package/public/chunk-ZM5B4KXN.js +0 -1
  215. package/public/chunk-ZNONDSJT.js +0 -1
  216. package/public/main-MRP2WE3O.js +0 -1
  217. package/public/polyfills-WE4HA5DL.js +0 -2
  218. package/public/styles-LKRXKJ7O.css +0 -1
  219. /package/public/assets/{monaco-0.21.3 → monaco}/LICENSE +0 -0
@@ -1,590 +0,0 @@
1
- {
2
- "pluginAlias": "config",
3
- "pluginType": "platform",
4
- "singular": true,
5
- "strictValidation": true,
6
- "schema": {
7
- "type": "object",
8
- "properties": {
9
- "name": {
10
- "title": "Name",
11
- "type": "string",
12
- "default": "Homebridge UI",
13
- "minLength": 1,
14
- "required": true,
15
- "description": "The name of the Homebridge instance."
16
- },
17
- "port": {
18
- "title": "Port",
19
- "type": "integer",
20
- "default": 8080,
21
- "maximum": 65535,
22
- "required": true,
23
- "description": "The port number to run the Homebridge UI on."
24
- },
25
- "auth": {
26
- "title": "Homebridge UI Authentication",
27
- "type": "string",
28
- "default": "form",
29
- "description": "Whether to enable authentication for the Homebridge UI with a username and password.",
30
- "oneOf": [
31
- {
32
- "title": "Require Authentication",
33
- "enum": [
34
- "form"
35
- ]
36
- },
37
- {
38
- "title": "None",
39
- "enum": [
40
- "none"
41
- ]
42
- }
43
- ],
44
- "required": true
45
- },
46
- "theme": {
47
- "title": "UI Theme",
48
- "description": "The theme used for the UI.",
49
- "type": "string",
50
- "default": "orange",
51
- "oneOf": [
52
- {
53
- "title": "Orange",
54
- "enum": [
55
- "orange"
56
- ]
57
- },
58
- {
59
- "title": "Red",
60
- "enum": [
61
- "red"
62
- ]
63
- },
64
- {
65
- "title": "Pink",
66
- "enum": [
67
- "pink"
68
- ]
69
- },
70
- {
71
- "title": "Purple",
72
- "enum": [
73
- "purple"
74
- ]
75
- },
76
- {
77
- "title": "Deep Purple",
78
- "enum": [
79
- "deep-purple"
80
- ]
81
- },
82
- {
83
- "title": "Indigo",
84
- "enum": [
85
- "indigo"
86
- ]
87
- },
88
- {
89
- "title": "Blue",
90
- "enum": [
91
- "blue"
92
- ]
93
- },
94
- {
95
- "title": "Blue Grey",
96
- "enum": [
97
- "blue-grey"
98
- ]
99
- },
100
- {
101
- "title": "Cyan",
102
- "enum": [
103
- "cyan"
104
- ]
105
- },
106
- {
107
- "title": "Green",
108
- "enum": [
109
- "green"
110
- ]
111
- },
112
- {
113
- "title": "Teal",
114
- "enum": [
115
- "teal"
116
- ]
117
- },
118
- {
119
- "title": "Grey",
120
- "enum": [
121
- "grey"
122
- ]
123
- },
124
- {
125
- "title": "Brown",
126
- "enum": [
127
- "brown"
128
- ]
129
- }
130
- ],
131
- "required": true
132
- },
133
- "lightingMode": {
134
- "title": "UI Lighting Mode",
135
- "description": "The lighting mode used for the UI.",
136
- "type": "string",
137
- "default": "auto",
138
- "oneOf": [
139
- {
140
- "title": "Auto",
141
- "enum": [
142
- "auto"
143
- ]
144
- },
145
- {
146
- "title": "Light",
147
- "enum": [
148
- "light"
149
- ]
150
- },
151
- {
152
- "title": "Dark",
153
- "enum": [
154
- "dark"
155
- ]
156
- }
157
- ]
158
- },
159
- "menuMode": {
160
- "title": "Menu Mode",
161
- "description": "Modes for the UI side menu.",
162
- "type": "string",
163
- "default": "default",
164
- "oneOf": [
165
- {
166
- "title": "Default",
167
- "enum": [
168
- "default"
169
- ]
170
- },
171
- {
172
- "title": "Freeze",
173
- "enum": [
174
- "freeze"
175
- ]
176
- }
177
- ]
178
- },
179
- "temp": {
180
- "title": "OS Temp File Path",
181
- "type": "string",
182
- "placeholder": "eg. /sys/class/thermal/thermal_zone0/temp",
183
- "description": "If you are running Homebridge on a Raspberry Pi, you can enter the path to the OS temp file here. This will display the current temperature on the Homebridge status page."
184
- },
185
- "tempUnits": {
186
- "title": "Temperature Display Units",
187
- "description": "The units used to display the temperature.",
188
- "type": "string",
189
- "required": true,
190
- "default": "c",
191
- "oneOf": [
192
- {
193
- "title": "Celsius",
194
- "enum": [
195
- "c"
196
- ]
197
- },
198
- {
199
- "title": "Fahrenheit",
200
- "enum": [
201
- "f"
202
- ]
203
- }
204
- ]
205
- },
206
- "lang": {
207
- "title": "Language",
208
- "type": "string",
209
- "default": "auto",
210
- "description": "The language used for the UI.",
211
- "required": true,
212
- "oneOf": [
213
- {
214
- "title": "Automatic (Use Browser Settings)",
215
- "enum": [
216
- "auto"
217
- ]
218
- },
219
- {
220
- "title": "Bulgarian (bg)",
221
- "enum": [
222
- "bg"
223
- ]
224
- },
225
- {
226
- "title": "Catalan (ca)",
227
- "enum": [
228
- "ca"
229
- ]
230
- },
231
- {
232
- "title": "Chinese - Simplified (zh-CN)",
233
- "enum": [
234
- "zh-CN"
235
- ]
236
- },
237
- {
238
- "title": "Chinese - Traditional (zh-TW)",
239
- "enum": [
240
- "zh-TW"
241
- ]
242
- },
243
- {
244
- "title": "Czech (cs)",
245
- "enum": [
246
- "cs"
247
- ]
248
- },
249
- {
250
- "title": "Dutch (nl)",
251
- "enum": [
252
- "nl"
253
- ]
254
- },
255
- {
256
- "title": "English (en)",
257
- "enum": [
258
- "en"
259
- ]
260
- },
261
- {
262
- "title": "Finnish (fi)",
263
- "enum": [
264
- "fi"
265
- ]
266
- },
267
- {
268
- "title": "French (fr)",
269
- "enum": [
270
- "fr"
271
- ]
272
- },
273
- {
274
- "title": "German (de)",
275
- "enum": [
276
- "de"
277
- ]
278
- },
279
- {
280
- "title": "Hebrew (he)",
281
- "enum": [
282
- "he"
283
- ]
284
- },
285
- {
286
- "title": "Hungarian (hu)",
287
- "enum": [
288
- "hu"
289
- ]
290
- },
291
- {
292
- "title": "Indonesian (id)",
293
- "enum": [
294
- "id"
295
- ]
296
- },
297
- {
298
- "title": "Italian (it)",
299
- "enum": [
300
- "it"
301
- ]
302
- },
303
- {
304
- "title": "Japanese (ja)",
305
- "enum": [
306
- "ja"
307
- ]
308
- },
309
- {
310
- "title": "Korean (ko)",
311
- "enum": [
312
- "ko"
313
- ]
314
- },
315
- {
316
- "title": "Macedonian (mk)",
317
- "enum": [
318
- "mk"
319
- ]
320
- },
321
- {
322
- "title": "Norwegian (no)",
323
- "enum": [
324
- "no"
325
- ]
326
- },
327
- {
328
- "title": "Polish (pl)",
329
- "enum": [
330
- "pl"
331
- ]
332
- },
333
- {
334
- "title": "Portuguese (Brazil)",
335
- "enum": [
336
- "pt-BR"
337
- ]
338
- },
339
- {
340
- "title": "Portuguese (Portugal)",
341
- "enum": [
342
- "pt"
343
- ]
344
- },
345
- {
346
- "title": "Russian (ru)",
347
- "enum": [
348
- "ru"
349
- ]
350
- },
351
- {
352
- "title": "Slovenian (sl)",
353
- "enum": [
354
- "sl"
355
- ]
356
- },
357
- {
358
- "title": "Spanish (es)",
359
- "enum": [
360
- "es"
361
- ]
362
- },
363
- {
364
- "title": "Swedish (sv)",
365
- "enum": [
366
- "sv"
367
- ]
368
- },
369
- {
370
- "title": "Thai (th)",
371
- "enum": [
372
- "th"
373
- ]
374
- },
375
- {
376
- "title": "Turkish (tr)",
377
- "enum": [
378
- "tr"
379
- ]
380
- },
381
- {
382
- "title": "Ukrainian (uk)",
383
- "enum": [
384
- "uk"
385
- ]
386
- }
387
- ]
388
- },
389
- "wallpaper": {
390
- "title": "Login Wallpaper Path",
391
- "description": "The full path to the .jpg file.",
392
- "type": "string",
393
- "placeholder": "eg. /home/pi/mywallpaper.jpg"
394
- },
395
- "homebridgePackagePath": {
396
- "title": "Path To Homebridge Module",
397
- "type": "string",
398
- "description": "If you have multiple versions of Homebridge installed, you can specify the path to the version you want to use here.",
399
- "placeholder": "eg. /usr/local/lib/node_modules/homebridge"
400
- },
401
- "host": {
402
- "title": "Host IP Address",
403
- "type": "string",
404
- "pattern": "^[^{}/ :\\\\]+(?::\\d+)?$",
405
- "description": "The host IP address to listen on. In most cases this will be '::' or '0.0.0.0'.",
406
- "placeholder": "eg. 0.0.0.0"
407
- },
408
- "sessionTimeout": {
409
- "title": "Session Timeout (Seconds)",
410
- "type": "integer",
411
- "placeholder": 28800,
412
- "minimum": 600,
413
- "maximum": 86400000,
414
- "description": "The number of seconds before a user will be logged out of the UI. Defaults to 8 hours.",
415
- "condition": {
416
- "functionBody": "return model.auth === 'form'"
417
- }
418
- },
419
- "log": {
420
- "type": "object",
421
- "title": "Log Settings",
422
- "description": "The log settings for the Homebridge UI.",
423
- "properties": {
424
- "maxSize": {
425
- "type": "integer",
426
- "description": "The max log size (bytes). Set to -1 to disable log truncation.",
427
- "minimum": -1
428
- },
429
- "truncateSize": {
430
- "type": "integer",
431
- "description": "The size (bytes) to truncate the log to once it goes over the max size specified above.",
432
- "minimum": 0,
433
- "condition": {
434
- "functionBody": "return (model.log && model.log.maxSize > 0)"
435
- }
436
- }
437
- }
438
- },
439
- "ssl": {
440
- "title": "SSL Setup",
441
- "type": "object",
442
- "description": "The SSL settings for the Homebridge UI.",
443
- "properties": {
444
- "key": {
445
- "title": "Private Key Path",
446
- "type": "string",
447
- "description": "The full path to the private key file.",
448
- "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.key"
449
- },
450
- "cert": {
451
- "title": "Certificate Path",
452
- "type": "string",
453
- "description": "The full path to the certificate file.",
454
- "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.crt"
455
- },
456
- "pfx": {
457
- "title": "PKCS#12 Certificate Path",
458
- "type": "string",
459
- "description": "The full path to the PKCS#12 certificate file.",
460
- "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.pfx"
461
- },
462
- "passphrase": {
463
- "title": "PKCS#12 Certificate Passphrase",
464
- "type": "string",
465
- "description": "The passphrase for the PKCS#12 certificate file.",
466
- "placeholder": "eg. mypassphrase"
467
- }
468
- }
469
- },
470
- "accessoryControl": {
471
- "title": "Accessory Control Setup",
472
- "type": "object",
473
- "description": "The accessory control settings for the Homebridge UI.",
474
- "properties": {
475
- "debug": {
476
- "title": "Enable Accessory Control Debug Logging",
477
- "type": "boolean",
478
- "description": "If enabled, the Homebridge UI will log debug level messages to the console."
479
- },
480
- "instanceBlacklist": {
481
- "title": "Blacklisted Bridges/Instances",
482
- "type": "array",
483
- "description": "A list of instances (or bridge usernames) that should not be controlled via the web UI.",
484
- "placeholder": "eg. 00:00:00:00:00:00",
485
- "items": {
486
- "title": "Instance Username",
487
- "type": "string",
488
- "pattern": "^([A-Fa-f0-9]{2}:){5}[A-Fa-f0-9]{2}$"
489
- }
490
- }
491
- }
492
- },
493
- "linux": {
494
- "title": "Linux Server Commands",
495
- "type": "object",
496
- "description": "The Linux server commands for the Homebridge UI.",
497
- "properties": {
498
- "shutdown": {
499
- "title": "Shutdown Command",
500
- "type": "string",
501
- "placeholder": "eg. shutdown",
502
- "description": "If no shutdown command is set the process will terminate with a non-zero exit code."
503
- },
504
- "restart": {
505
- "title": "Restart Command",
506
- "type": "string",
507
- "placeholder": "eg. reboot",
508
- "description": "If no restart command is set the process will terminate with a non-zero exit code."
509
- }
510
- }
511
- },
512
- "proxyHost": {
513
- "title": "Reverse Proxy Hostname",
514
- "type": "string",
515
- "pattern": "^[^{}/ :\\\\]+(?::\\d+)?$",
516
- "placeholder": "eg. example.com:8443",
517
- "description": "When running behind a reverse proxy you may need to enter the hostname you use to access the UI."
518
- },
519
- "scheduledBackupPath": {
520
- "title": "Scheduled Backup Destination",
521
- "description": "The full path to where the service should save daily scheduled backups archives.",
522
- "type": "string",
523
- "placeholder": "eg. /home/pi/homebridge-backups",
524
- "condition": {
525
- "functionBody": "return !model.scheduledBackupDisable"
526
- }
527
- },
528
- "scheduledBackupDisable": {
529
- "title": "Disable Scheduled Backups",
530
- "type": "boolean",
531
- "description": "When enabled, the Homebridge UI will not create daily scheduled backups."
532
- },
533
- "disableServerMetricsMonitoring": {
534
- "title": "Disable Server Metrics Monitoring",
535
- "type": "boolean",
536
- "description": "When enabled, the Homebridge UI will not collect or report CPU or memory stats."
537
- },
538
- "plugins": {
539
- "title": "Plugins",
540
- "type": "object",
541
- "description": "Settings surrounding plugins used by the Homebridge UI.",
542
- "properties": {
543
- "hideUpdatesFor": {
544
- "type": "array",
545
- "title": "Hide Plugin Updates For",
546
- "description": "A list of plugin names for which frontend update notifications will be hidden.",
547
- "items": {
548
- "type": "string",
549
- "title": "Plugin Name",
550
- "pattern": "^(?:@[\\w-]+(?:\\.[\\w-]+)*/)?homebridge-[\\w-]+$"
551
- }
552
- }
553
- }
554
- },
555
- "terminal": {
556
- "type": "object",
557
- "title": "Terminal Settings",
558
- "description": "The terminal settings for the Homebridge UI.",
559
- "properties": {
560
- "persistence": {
561
- "title": "Terminal Session Persistence",
562
- "type": "boolean",
563
- "description": "When enabled, terminal sessions will persist when navigating away and can be resumed when returning to the terminal page (or status page widget). Terminal sessions are shared across Homebridge UI admin users.",
564
- "default": false
565
- },
566
- "hideWarning": {
567
- "title": "Hide Terminal Termination Warning",
568
- "type": "boolean",
569
- "description": "When enabled, the warning dialog will not be shown before terminating non-persistent terminal sessions.",
570
- "default": false,
571
- "condition": {
572
- "functionBody": "return !model.terminal?.persistence"
573
- }
574
- },
575
- "bufferSize": {
576
- "title": "Terminal Buffer Character Size",
577
- "type": "integer",
578
- "description": "Amount of terminal output to preserve for persistent sessions. Larger values use more memory.",
579
- "default": 50000,
580
- "minimum": 0,
581
- "condition": {
582
- "functionBody": "return model.terminal?.persistence"
583
- }
584
- }
585
- }
586
- }
587
- }
588
- },
589
- "layout": []
590
- }
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
- <svg
3
- width="32px"
4
- height="32px"
5
- viewBox="0 0 32 32"
6
- version="1.1"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
- >
11
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
- <title>bulb</title>
13
- <desc>Created with Sketch.</desc>
14
- <defs />
15
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-4.000000, -4.000000)" fill="#000000">
17
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 4.000000)">
18
- <path
19
- d="M8.04893656,20.9879868 C5.56555168,18.7894577 4,15.5775559 4,12 C4,5.372583 9.372583,0 16,0 C22.627417,0 28,5.372583 28,12 C28,15.5351969 26.4713018,18.7133471 24.0388879,20.9094684 C22.8714144,21.9635298 22.3935361,26.314352 21.2275404,29.0298342 C20.2686082,31.263087 18.8677424,32.0416197 16.0327148,31.9748535 C13.2665152,31.9097083 11.7263284,31.2123902 10.7692871,29.0864258 C9.55282281,26.3841811 9.23382169,22.0369601 8.04893656,20.9879868 L8.04893656,20.9879868 Z M6,12 C6,6.4771525 10.4771525,2 16,2 C21.5228475,2 26,6.4771525 26,12 C26,13.4039787 25.7097455,14.7600975 25.1685764,16 L6.83144854,16 C6.29038009,14.7602736 6,13.4041311 6,12 L6,12 Z M10.4462142,21 C10.1610402,20.3571063 9.8320342,19.8954144 9.37465546,19.4904991 C8.55828153,18.7677671 7.87243458,17.9262861 7.33680389,17 L7.33680389,17 L24.66319,17 C24.1437667,17.8981932 23.482983,18.7168207 22.6986172,19.4249906 C22.2402726,19.8388101 21.9047051,20.3213336 21.6043283,21 L10.4462142,21 L10.4462142,21 L10.4462142,21 Z M11.1018052,23 C11.1720882,23.2658547 11.2440709,23.5508756 11.3192464,23.8572605 C11.3437376,23.9570767 11.5960867,25.004759 11.7045027,25.4435106 L11.7045027,25.4435106 L20.8873043,23.1382947 C20.9002539,23.0916455 20.9131357,23.0455506 20.9259569,23 L11.1018052,23 L11.1018052,23 L11.1018052,23 Z M12.5749549,28.2249957 C12.3621958,27.7446626 12.1664961,27.1655223 11.9572719,26.4110846 L11.9572719,26.4110846 L20.5928403,24.2432441 C20.4835056,24.6645271 20.3300954,25.2573517 20.2770527,25.4580134 C20.1911713,25.7829042 20.1100328,26.0797864 20.0319804,26.353012 L12.5749542,28.2249958 L12.5749549,28.2249957 L12.5749549,28.2249957 Z M13.1241608,29.1181532 C13.6755154,29.7210257 14.4995511,29.9381923 16.0798027,29.9754079 C18.1496378,30.0241534 18.7757989,29.6706585 19.3897941,28.2407279 C19.4897734,28.0078865 19.586616,27.7549737 19.6843919,27.4712975 L13.1241608,29.1181532 L13.1241608,29.1181532 L13.1241608,29.1181532 Z M8.49999999,12.0473103 C8,12.0473103 8.02221433,11.3092774 8.06530214,10.9730396 C8.52717694,7.36877756 11.387523,4.51476445 14.9947964,4.06254437 C15.2453908,4.031129 16.0447247,4.00000003 16.0447247,4.50000001 C16.0447247,5 14.9166805,5.08331953 14.9166805,5.08331953 C11.918172,5.5491681 9.5491681,7.91817199 9.08331953,10.9166805 C9.08331953,10.9166805 8.99999997,12.0473103 8.49999999,12.0473103 L8.49999999,12.0473103 Z"
20
- sketch:type="MSShapeGroup"
21
- />
22
- </g>
23
- </g>
24
- </g>
25
- </svg>
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
- <svg
3
- width="32px"
4
- height="32px"
5
- viewBox="0 0 32 32"
6
- version="1.1"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
- >
11
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
- <title>socket i</title>
13
- <desc>Created with Sketch.</desc>
14
- <defs />
15
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-36.000000, -132.000000)" fill="#000000">
17
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(36.000000, 132.000000)">
18
- <path
19
- d="M0,6.00017566 C0,2.68637015 2.68697795,0 6.00017566,0 L25.9998243,0 C29.3136299,0 32,2.68697795 32,6.00017566 L32,25.9998243 C32,29.3136299 29.3130221,32 25.9998243,32 L6.00017566,32 C2.68637015,32 0,29.3130221 0,25.9998243 L0,6.00017566 L0,6.00017566 Z M2,6.00017566 L2,25.9998243 C2,28.2086938 3.79118088,30 6.00017566,30 L25.9998243,30 C28.2086938,30 30,28.2088191 30,25.9998243 L30,6.00017566 C30,3.7913062 28.2088191,2 25.9998243,2 L6.00017566,2 C3.7913062,2 2,3.79118088 2,6.00017566 L2,6.00017566 Z M4,9.00197269 C4,6.23945945 6.23630996,4 9.00197269,4 L22.9980273,4 C25.7605405,4 28,6.23630996 28,9.00197269 L28,22.9980273 C28,25.7605405 25.76369,28 22.9980273,28 L9.00197269,28 C6.23945945,28 4,25.76369 4,22.9980273 L4,9.00197269 L4,9.00197269 Z M5,9.00197269 L5,22.9980273 C5,25.2102201 6.79055863,27 9.00197269,27 L22.9980273,27 C25.2102201,27 27,25.2094414 27,22.9980273 L27,9.00197269 C27,6.78977986 25.2094414,5 22.9980273,5 L9.00197269,5 C6.78977986,5 5,6.79055863 5,9.00197269 L5,9.00197269 Z M16,25 C11.0294373,25 7,20.9705627 7,16 C7,11.0294373 11.0294373,7 16,7 C20.9705627,7 25,11.0294373 25,16 C25,20.9705627 20.9705627,25 16,25 L16,25 Z M16,24 C20.418278,24 24,20.418278 24,16 C24,11.581722 20.418278,8 16,8 C11.581722,8 8,11.581722 8,16 C8,20.418278 11.581722,24 16,24 L16,24 Z M16,21 C15.4477153,21 15,20.5566468 15,19.9906311 L15,18.0093689 C15,17.4519098 15.4438648,17 16,17 C16.5522847,17 17,17.4433532 17,18.0093689 L17,19.9906311 C17,20.5480902 16.5561352,21 16,21 L16,21 Z M17.2679492,13 C17.5440916,12.5217074 18.1519043,12.3556512 18.6420883,12.638659 L20.3579117,13.6292901 C20.8406854,13.9080197 21.0101184,14.5183728 20.7320508,15 C20.4559084,15.4782926 19.8480957,15.6443488 19.3579117,15.361341 L17.6420883,14.3707099 C17.1593146,14.0919803 16.9898816,13.4816272 17.2679492,13 L17.2679492,13 Z M11.2679492,15 C10.9918068,14.5217074 11.1519043,13.912298 11.6420883,13.6292901 L13.3579117,12.638659 C13.8406854,12.3599295 14.4539832,12.5183728 14.7320508,13 C15.0081932,13.4782926 14.8480957,14.087702 14.3579117,14.3707099 L12.6420883,15.361341 C12.1593146,15.6400705 11.5460168,15.4816272 11.2679492,15 L11.2679492,15 Z"
20
- sketch:type="MSShapeGroup"
21
- />
22
- </g>
23
- </g>
24
- </g>
25
- </svg>
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
- <svg
3
- width="32px"
4
- height="32px"
5
- viewBox="0 0 32 32"
6
- version="1.1"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:xlink="http://www.w3.org/1999/xlink"
9
- xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
- >
11
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
- <title>power button</title>
13
- <desc>Created with Sketch.</desc>
14
- <defs />
15
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -132.000000)" fill="#000000">
17
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 132.000000)">
18
- <path
19
- d="M16,32 C24.836556,32 32,24.836556 32,16 C32,7.163444 24.836556,0 16,0 C7.163444,0 0,7.163444 0,16 C0,24.836556 7.163444,32 16,32 Z M16,30 C8.2680135,30 2,23.7319865 2,16 C2,8.2680135 8.2680135,2 16,2 C23.7319865,2 30,8.2680135 30,16 C30,23.7319865 23.7319865,30 16,30 Z M15,7.99754465 C15,7.44661595 15.4438648,7 16,7 C16.5522847,7 17,7.4463114 17,7.99754465 L17,15.0024554 C17,15.553384 16.5561352,16 16,16 C15.4477153,16 15,15.5536886 15,15.0024554 L15,7.99754465 Z M21.4589329,9.49999998 C21,9.97698687 21.1735519,10.8351 21.4589326,11.2029426 C22.4505994,12.4811551 23,14.065977 23,15.7447101 C23,19.7640218 19.8532802,23 16,23 C12.1467198,23 9,19.7640218 9,15.7447101 C9,14.0415493 9.56560927,12.4352187 10.5838497,11.1483389 C10.8725653,10.7834523 11,9.9670534 10.5,9.49999999 C10,9.03294657 9.01543812,9.9073372 9.01543812,9.9073372 C7.75536735,11.4998488 7,13.5315645 7,15.7447101 C7,20.8562656 11.0294373,25 16,25 C20.9705627,25 25,20.8562656 25,15.7447101 C25,13.5637007 24.2664101,11.5588905 23.0391328,9.97698685 C23.0391328,9.97698685 21.9178658,9.0230131 21.4589329,9.49999998 Z"
20
- sketch:type="MSShapeGroup"
21
- />
22
- </g>
23
- </g>
24
- </g>
25
- </svg>