homebridge-dummy 1.3.1-beta.0 → 1.3.1-beta.2

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.
package/CHANGELOG.md CHANGED
@@ -2,14 +2,18 @@
2
2
 
3
3
  All notable changes to homebridge-dummy will be documented in this file.
4
4
 
5
- ## 1.3.1-beta.0 (2025-10-14)
5
+ ## 1.3.1-beta.2 (2025-10-16)
6
6
 
7
- ### ‼️ WARNING — Read this if upgrading from v0.9.2 or earlier…
8
- Automations and scenes using Homebridge Dummy accessories will need to be reconfigured. After upgrading, you must **RESTART HOMEBRIDGE SERVICE & UI** (not just *RESTART HOMEBRIDGE*). After restarting, open the Homebridge Dummy plugin settings to run the accessory migration helper. Full details [here](https://github.com/mpatfield/homebridge-dummy?tab=readme-ov-file#v1.0-migration).
7
+ ### ‼️ WARNING — If upgrading from v0.9.2 or earlier…
8
+ Read [this](https://github.com/mpatfield/homebridge-dummy?tab=readme-ov-file#v10-migration) before upgrading.
9
9
 
10
10
  ### Fixed
11
11
  - Auto-Reset timer not resetting delay when re-invoked ([#197](https://github.com/mpatfield/homebridge-dummy/issues/197))
12
12
 
13
+ ### Added
14
+ - Deutsche Übersetzungen. Danke, [@jotzet79](https://github.com/sponsors/jotzet79)!
15
+ - Traducciones al español. ¡Gracias, [@dcompane](https://github.com/sponsors/dcompane)!
16
+
13
17
  ## 1.3.0 (2025-10-13)
14
18
 
15
19
  ### Added
package/README.md CHANGED
@@ -42,6 +42,18 @@ Unfortunately, there is no built-in way to migrate existing accessory plugins to
42
42
 
43
43
  However, Homebridge Dummy will try to help migrate the accessory configurations to the new system to prevent you having to set them all up again in Homebridge.
44
44
 
45
+ ### HOOBS Users
46
+
47
+ Homebridge Dummy now requires `customUi` for the config UI to help with migration from older versions, translations, UUID generation and some other useful tools. Unfortunately, HOOBS does not support `customUi`.
48
+
49
+ If you use HOOBS your current options are:
50
+
51
+ 1. Upgrade to v1.0+ and use Advanced Mode to manually edit the JSON config
52
+ 2. Continue to use `v0.9.2` which should continue to work for the foreseeable future but won't include any of the new features
53
+ 3. Migrate your system to Homebridge which is very actively developed and has an engaged community of developers
54
+
55
+ You may also add a comment on [this ticket](https://github.com/hoobs-org/sidecars/issues/13) to help encourage the HOOBS team to add a "sidecar" for Homebridge Dummy.
56
+
45
57
  ### Migration Flow
46
58
 
47
59
  ⚠️ Please make sure to restart both Homebridge Service AND Homebridge UI after upgrading to v1.0 or you will experience issues with Homebridge Dummy configuration.
@@ -43,4 +43,4 @@
43
43
  <em><p i18n="migrationDetails5" i18n_replace="migration"></p></em></br>
44
44
  </div>
45
45
 
46
- <script src="ui.js?v=1.3.1-beta.0"></script>
46
+ <script src="ui.js?v=1.3.1-beta.2"></script>
@@ -0,0 +1,468 @@
1
+ declare const de: {
2
+ accessory: {
3
+ badValueType: string;
4
+ invalidCron: string;
5
+ missingRequired: string;
6
+ };
7
+ command: {
8
+ error: string;
9
+ executed: string;
10
+ };
11
+ lightbulb: {
12
+ brightness: string;
13
+ stateOn: string;
14
+ };
15
+ limiter: {
16
+ badPeriod: string;
17
+ badUnits: string;
18
+ expired: string;
19
+ limitExceedsPeriod: string;
20
+ remainingDayPlus: string;
21
+ remainingHours: string;
22
+ remainingMinutes: string;
23
+ remainingSeconds: string;
24
+ };
25
+ lock: {
26
+ badDefault: string;
27
+ secured: string;
28
+ unsecured: string;
29
+ };
30
+ onOff: {
31
+ stateOff: string;
32
+ stateOn: string;
33
+ };
34
+ position: {
35
+ badDefault: string;
36
+ closed: string;
37
+ open: string;
38
+ };
39
+ schedule: {
40
+ badType: string;
41
+ badUnits: string;
42
+ cron: string;
43
+ intervalMilliseconds: string;
44
+ intervalSeconds: string;
45
+ intervalMinutes: string;
46
+ intervalHours: string;
47
+ };
48
+ thermostat: {
49
+ auto: string;
50
+ badDefault: string;
51
+ badUnits: string;
52
+ cool: string;
53
+ heat: string;
54
+ off: string;
55
+ temperatureC: string;
56
+ temperatureF: string;
57
+ unsupportedFunction: string;
58
+ };
59
+ timer: {
60
+ badUnits: string;
61
+ cancel: string;
62
+ expired: string;
63
+ resume: string;
64
+ setMilliseconds: string;
65
+ setSeconds: string;
66
+ setMinutes: string;
67
+ setHours: string;
68
+ };
69
+ config: {
70
+ description: {
71
+ commands: string;
72
+ cron: string;
73
+ limiter: string;
74
+ random: string;
75
+ schedule: string;
76
+ timer: string;
77
+ timerControlled: string;
78
+ };
79
+ enumNames: {
80
+ auto: string;
81
+ carbonDioxideSensor: string;
82
+ carbonMonoxideSensor: string;
83
+ celsius: string;
84
+ closed: string;
85
+ contactSensor: string;
86
+ cool: string;
87
+ cron: string;
88
+ custom: string;
89
+ daily: string;
90
+ day: string;
91
+ door: string;
92
+ fahrenheit: string;
93
+ heat: string;
94
+ hour: string;
95
+ hourly: string;
96
+ hours: string;
97
+ interval: string;
98
+ leakSensor: string;
99
+ lightbulb: string;
100
+ lockMechanism: string;
101
+ minutely: string;
102
+ month: string;
103
+ monthly: string;
104
+ occupancySensor: string;
105
+ off: string;
106
+ on: string;
107
+ open: string;
108
+ outlet: string;
109
+ milliseconds: string;
110
+ minutes: string;
111
+ motionSensor: string;
112
+ secondly: string;
113
+ seconds: string;
114
+ secured: string;
115
+ smokeSensor: string;
116
+ switch: string;
117
+ thermostat: string;
118
+ unsecured: string;
119
+ week: string;
120
+ weekdays: string;
121
+ weekends: string;
122
+ weekly: string;
123
+ window: string;
124
+ windowCovering: string;
125
+ yearly: string;
126
+ };
127
+ migrate: string;
128
+ migrationDetails1: string;
129
+ migrationDetails2: string;
130
+ migrationDetails3: string;
131
+ migrationDetails4: string;
132
+ migrationDetails5: string;
133
+ migrationRestartDescription: string;
134
+ migrationRestartTitle: string;
135
+ no: string;
136
+ support: string;
137
+ thankYou: string;
138
+ yes: string;
139
+ title: {
140
+ accessory: string;
141
+ commandClose: string;
142
+ commandOff: string;
143
+ commandOn: string;
144
+ commandOpen: string;
145
+ commandLock: string;
146
+ commands: string;
147
+ commandTemperature: string;
148
+ commandUnlock: string;
149
+ cron: string;
150
+ cronCustom: string;
151
+ defaultBrightness: string;
152
+ defaultPosition: string;
153
+ defaultState: string;
154
+ defaultTemperature: string;
155
+ delay: string;
156
+ disableLogging: string;
157
+ enableWebook: string;
158
+ groupName: string;
159
+ interval: string;
160
+ limit: string;
161
+ limiter: string;
162
+ name: string;
163
+ period: string;
164
+ preset: string;
165
+ random: string;
166
+ resetOnRestart: string;
167
+ schedule: string;
168
+ sensor: string;
169
+ timer: string;
170
+ timerControlled: string;
171
+ type: string;
172
+ units: string;
173
+ };
174
+ };
175
+ sensor: {
176
+ badType: string;
177
+ carbonDioxide: {
178
+ active: string;
179
+ inactive: string;
180
+ };
181
+ carbonMonoxide: {
182
+ active: string;
183
+ inactive: string;
184
+ };
185
+ contact: {
186
+ active: string;
187
+ inactive: string;
188
+ };
189
+ leak: {
190
+ active: string;
191
+ inactive: string;
192
+ };
193
+ motion: {
194
+ active: string;
195
+ inactive: string;
196
+ };
197
+ occupancy: {
198
+ active: string;
199
+ inactive: string;
200
+ };
201
+ smoke: {
202
+ active: string;
203
+ inactive: string;
204
+ };
205
+ };
206
+ startup: {
207
+ migrationBridge: string;
208
+ migrationComplete: string;
209
+ migrationFailed: string;
210
+ migrationIgnore: string;
211
+ migrationNoAccessories: string;
212
+ migrationRevert: string;
213
+ newAccessory: string;
214
+ removeAccessory: string;
215
+ restoringAccessory: string;
216
+ setupComplete: string;
217
+ unsupportedType: string;
218
+ welcome: string[];
219
+ };
220
+ webhook: {
221
+ badUnits: string;
222
+ missing: string;
223
+ received: string;
224
+ register: string;
225
+ started: string;
226
+ stopped: string;
227
+ stopping: string;
228
+ validRange: string;
229
+ validValues: string;
230
+ unregisteredCommand: string;
231
+ unsupportedCommand: string;
232
+ unregisteredId: string;
233
+ };
234
+ } & {
235
+ accessory: {
236
+ badValueType: string;
237
+ invalidCron: string;
238
+ missingRequired: string;
239
+ };
240
+ command: {
241
+ error: string;
242
+ executed: string;
243
+ };
244
+ lightbulb: {
245
+ brightness: string;
246
+ stateOn: string;
247
+ };
248
+ limiter: {
249
+ badPeriod: string;
250
+ badUnits: string;
251
+ expired: string;
252
+ limitExceedsPeriod: string;
253
+ remainingDayPlus: string;
254
+ remainingHours: string;
255
+ remainingMinutes: string;
256
+ remainingSeconds: string;
257
+ };
258
+ lock: {
259
+ badDefault: string;
260
+ secured: string;
261
+ unsecured: string;
262
+ };
263
+ onOff: {
264
+ stateOff: string;
265
+ stateOn: string;
266
+ };
267
+ position: {
268
+ badDefault: string;
269
+ closed: string;
270
+ open: string;
271
+ };
272
+ schedule: {
273
+ badType: string;
274
+ badUnits: string;
275
+ cron: string;
276
+ intervalMilliseconds: string;
277
+ intervalSeconds: string;
278
+ intervalMinutes: string;
279
+ intervalHours: string;
280
+ };
281
+ thermostat: {
282
+ auto: string;
283
+ badDefault: string;
284
+ badUnits: string;
285
+ cool: string;
286
+ heat: string;
287
+ off: string;
288
+ temperatureC: string;
289
+ temperatureF: string;
290
+ unsupportedFunction: string;
291
+ };
292
+ timer: {
293
+ badUnits: string;
294
+ cancel: string;
295
+ expired: string;
296
+ resume: string;
297
+ setMilliseconds: string;
298
+ setSeconds: string;
299
+ setMinutes: string;
300
+ setHours: string;
301
+ };
302
+ config: {
303
+ description: {
304
+ commands: string;
305
+ cron: string;
306
+ limiter: string;
307
+ random: string;
308
+ schedule: string;
309
+ timer: string;
310
+ timerControlled: string;
311
+ };
312
+ enumNames: {
313
+ auto: string;
314
+ carbonDioxideSensor: string;
315
+ carbonMonoxideSensor: string;
316
+ celsius: string;
317
+ closed: string;
318
+ contactSensor: string;
319
+ cool: string;
320
+ cron: string;
321
+ custom: string;
322
+ daily: string;
323
+ day: string;
324
+ door: string;
325
+ fahrenheit: string;
326
+ heat: string;
327
+ hour: string;
328
+ hourly: string;
329
+ hours: string;
330
+ interval: string;
331
+ leakSensor: string;
332
+ lightbulb: string;
333
+ lockMechanism: string;
334
+ minutely: string;
335
+ month: string;
336
+ monthly: string;
337
+ occupancySensor: string;
338
+ off: string;
339
+ on: string;
340
+ open: string;
341
+ outlet: string;
342
+ milliseconds: string;
343
+ minutes: string;
344
+ motionSensor: string;
345
+ secondly: string;
346
+ seconds: string;
347
+ secured: string;
348
+ smokeSensor: string;
349
+ switch: string;
350
+ thermostat: string;
351
+ unsecured: string;
352
+ week: string;
353
+ weekdays: string;
354
+ weekends: string;
355
+ weekly: string;
356
+ window: string;
357
+ windowCovering: string;
358
+ yearly: string;
359
+ };
360
+ migrate: string;
361
+ migrationDetails1: string;
362
+ migrationDetails2: string;
363
+ migrationDetails3: string;
364
+ migrationDetails4: string;
365
+ migrationDetails5: string;
366
+ migrationRestartDescription: string;
367
+ migrationRestartTitle: string;
368
+ no: string;
369
+ support: string;
370
+ thankYou: string;
371
+ yes: string;
372
+ title: {
373
+ accessory: string;
374
+ commandClose: string;
375
+ commandOff: string;
376
+ commandOn: string;
377
+ commandOpen: string;
378
+ commandLock: string;
379
+ commands: string;
380
+ commandTemperature: string;
381
+ commandUnlock: string;
382
+ cron: string;
383
+ cronCustom: string;
384
+ defaultBrightness: string;
385
+ defaultPosition: string;
386
+ defaultState: string;
387
+ defaultTemperature: string;
388
+ delay: string;
389
+ disableLogging: string;
390
+ enableWebook: string;
391
+ groupName: string;
392
+ interval: string;
393
+ limit: string;
394
+ limiter: string;
395
+ name: string;
396
+ period: string;
397
+ preset: string;
398
+ random: string;
399
+ resetOnRestart: string;
400
+ schedule: string;
401
+ sensor: string;
402
+ timer: string;
403
+ timerControlled: string;
404
+ type: string;
405
+ units: string;
406
+ };
407
+ };
408
+ sensor: {
409
+ badType: string;
410
+ carbonDioxide: {
411
+ active: string;
412
+ inactive: string;
413
+ };
414
+ carbonMonoxide: {
415
+ active: string;
416
+ inactive: string;
417
+ };
418
+ contact: {
419
+ active: string;
420
+ inactive: string;
421
+ };
422
+ leak: {
423
+ active: string;
424
+ inactive: string;
425
+ };
426
+ motion: {
427
+ active: string;
428
+ inactive: string;
429
+ };
430
+ occupancy: {
431
+ active: string;
432
+ inactive: string;
433
+ };
434
+ smoke: {
435
+ active: string;
436
+ inactive: string;
437
+ };
438
+ };
439
+ startup: {
440
+ migrationBridge: string;
441
+ migrationComplete: string;
442
+ migrationFailed: string;
443
+ migrationIgnore: string;
444
+ migrationNoAccessories: string;
445
+ migrationRevert: string;
446
+ newAccessory: string;
447
+ removeAccessory: string;
448
+ restoringAccessory: string;
449
+ setupComplete: string;
450
+ unsupportedType: string;
451
+ welcome: string[];
452
+ };
453
+ webhook: {
454
+ badUnits: string;
455
+ missing: string;
456
+ received: string;
457
+ register: string;
458
+ started: string;
459
+ stopped: string;
460
+ stopping: string;
461
+ validRange: string;
462
+ validValues: string;
463
+ unregisteredCommand: string;
464
+ unsupportedCommand: string;
465
+ unregisteredId: string;
466
+ };
467
+ };
468
+ export default de;