iobroker.device-watcher 2.9.6 → 2.9.7
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/README.md +6 -0
- package/admin/jsonConfig.json5 +19 -0
- package/io-package.json +859 -835
- package/lib/arrApart.js +12 -0
- package/main.js +27 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
**Tests:** </br>
|
|
20
20
|

|
|
21
21
|
[](https://github.com/ciddi89/ioBroker.device-watcher/actions/workflows/codeql.yml)
|
|
22
|
+
[](https://snyk.io/test/github/ciddi89/ioBroker.device-watcher)
|
|
22
23
|
|
|
23
24
|
## Sentry
|
|
24
25
|
|
|
@@ -188,6 +189,11 @@ It's possible to select:
|
|
|
188
189
|
Placeholder for the next version (at the beginning of the line):
|
|
189
190
|
### **WORK IN PROGRESS**
|
|
190
191
|
-->
|
|
192
|
+
### 2.9.7 (2023-11-23)
|
|
193
|
+
|
|
194
|
+
- (ciddi89) Added: Support for Wifilight
|
|
195
|
+
- (ciddi89) Fixed: Multiple messages if Sonoff devices reachable [#244](https://github.com/ciddi89/ioBroker.device-watcher/issues/244)
|
|
196
|
+
|
|
191
197
|
### 2.9.6 (2023-11-12)
|
|
192
198
|
|
|
193
199
|
- (ciddi89) Fixed: Admin jsonConfig schema
|
package/admin/jsonConfig.json5
CHANGED
|
@@ -380,6 +380,13 @@
|
|
|
380
380
|
lg: 3,
|
|
381
381
|
label: 'Viessmann',
|
|
382
382
|
},
|
|
383
|
+
wifilightDevices: {
|
|
384
|
+
type: 'checkbox',
|
|
385
|
+
sm: 6,
|
|
386
|
+
md: 6,
|
|
387
|
+
lg: 3,
|
|
388
|
+
label: 'Wifilight',
|
|
389
|
+
},
|
|
383
390
|
wledDevices: {
|
|
384
391
|
type: 'checkbox',
|
|
385
392
|
sm: 6,
|
|
@@ -2320,6 +2327,18 @@
|
|
|
2320
2327
|
hidden: '!data.viessmannDevices',
|
|
2321
2328
|
hideOnlyControl: false,
|
|
2322
2329
|
},
|
|
2330
|
+
wifilightMaxMinutes: {
|
|
2331
|
+
type: 'number',
|
|
2332
|
+
min: -1,
|
|
2333
|
+
max: 100000,
|
|
2334
|
+
sm: 6,
|
|
2335
|
+
md: 6,
|
|
2336
|
+
lg: 3,
|
|
2337
|
+
label: 'Wifilight',
|
|
2338
|
+
help: 'in minutes',
|
|
2339
|
+
hidden: '!data.wifilightDevices',
|
|
2340
|
+
hideOnlyControl: false,
|
|
2341
|
+
},
|
|
2323
2342
|
wledMaxMinutes: {
|
|
2324
2343
|
type: 'number',
|
|
2325
2344
|
min: -1,
|