iobroker.device-watcher 2.8.5 → 2.9.1
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 +10 -0
- package/admin/jsonConfig.json +38 -0
- package/io-package.json +851 -827
- package/lib/arrApart.js +25 -0
- package/main.js +159 -88
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -189,6 +189,16 @@ It's possible to select:
|
|
|
189
189
|
Placeholder for the next version (at the beginning of the line):
|
|
190
190
|
### **WORK IN PROGRESS**
|
|
191
191
|
-->
|
|
192
|
+
### 2.9.1 (2023-04-27)
|
|
193
|
+
|
|
194
|
+
- (ciddi89) Removed: Function for error handling (not neccessary)
|
|
195
|
+
|
|
196
|
+
### 2.9.0 (2023-04-26)
|
|
197
|
+
|
|
198
|
+
- (ciddi89) Fixed: Deactivated instances were not displayed in the daily message about deactivated instances
|
|
199
|
+
- (ciddi89) Added: Viessmann devices, Homekit-Controller devices
|
|
200
|
+
- (ciddi89) Improvements: Text of overview messages
|
|
201
|
+
|
|
192
202
|
### 2.8.5 (2023-04-20)
|
|
193
203
|
|
|
194
204
|
- (ciddi89) Fixed: Error that instances can not be added to the blacklist because of the popup message [#172](https://github.com/ciddi89/ioBroker.device-watcher/issues/172)
|
package/admin/jsonConfig.json
CHANGED
|
@@ -142,6 +142,13 @@
|
|
|
142
142
|
"lg": 3,
|
|
143
143
|
"label": "Home Connect"
|
|
144
144
|
},
|
|
145
|
+
"homekitControllerDevices": {
|
|
146
|
+
"type": "checkbox",
|
|
147
|
+
"sm": 6,
|
|
148
|
+
"md": 6,
|
|
149
|
+
"lg": 3,
|
|
150
|
+
"label": "Homekit-Controller"
|
|
151
|
+
},
|
|
145
152
|
"hs100Devices": {
|
|
146
153
|
"type": "checkbox",
|
|
147
154
|
"sm": 6,
|
|
@@ -352,6 +359,13 @@
|
|
|
352
359
|
"lg": 3,
|
|
353
360
|
"label": "Unifi"
|
|
354
361
|
},
|
|
362
|
+
"viessmannDevices": {
|
|
363
|
+
"type": "checkbox",
|
|
364
|
+
"sm": 6,
|
|
365
|
+
"md": 6,
|
|
366
|
+
"lg": 3,
|
|
367
|
+
"label": "Viessmann"
|
|
368
|
+
},
|
|
355
369
|
"wledDevices": {
|
|
356
370
|
"type": "checkbox",
|
|
357
371
|
"sm": 6,
|
|
@@ -1875,6 +1889,18 @@
|
|
|
1875
1889
|
"hidden": "!data.homeconnectDevices",
|
|
1876
1890
|
"hideOnlyControl": false
|
|
1877
1891
|
},
|
|
1892
|
+
"homekitControllerMaxMinutes": {
|
|
1893
|
+
"type": "number",
|
|
1894
|
+
"min": -1,
|
|
1895
|
+
"max": 100000,
|
|
1896
|
+
"sm": 6,
|
|
1897
|
+
"md": 6,
|
|
1898
|
+
"lg": 3,
|
|
1899
|
+
"label": "Homekit-Controller",
|
|
1900
|
+
"help": "in minutes",
|
|
1901
|
+
"hidden": "!data.homekitControllerDevices",
|
|
1902
|
+
"hideOnlyControl": false
|
|
1903
|
+
},
|
|
1878
1904
|
"hs100MaxMinutes": {
|
|
1879
1905
|
"type": "number",
|
|
1880
1906
|
"min": 1,
|
|
@@ -2247,6 +2273,18 @@
|
|
|
2247
2273
|
"hidden": "!data.unifiDevices",
|
|
2248
2274
|
"hideOnlyControl": false
|
|
2249
2275
|
},
|
|
2276
|
+
"viessmannMaxMinutes": {
|
|
2277
|
+
"type": "number",
|
|
2278
|
+
"min": -1,
|
|
2279
|
+
"max": 100000,
|
|
2280
|
+
"sm": 6,
|
|
2281
|
+
"md": 6,
|
|
2282
|
+
"lg": 3,
|
|
2283
|
+
"label": "Viessmann",
|
|
2284
|
+
"help": "in minutes",
|
|
2285
|
+
"hidden": "!data.viessmannDevices",
|
|
2286
|
+
"hideOnlyControl": false
|
|
2287
|
+
},
|
|
2250
2288
|
"wledMaxMinutes": {
|
|
2251
2289
|
"type": "number",
|
|
2252
2290
|
"min": -1,
|