iobroker.device-watcher 2.10.1 → 2.10.3
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 +9 -0
- package/admin/jsonConfig.json5 +12 -0
- package/io-package.json +838 -860
- package/main.js +240 -177
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -189,6 +189,15 @@ 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.10.3 (2024-01-27)
|
|
193
|
+
|
|
194
|
+
- (ciddi89) Fixed [#299](https://github.com/ciddi89/ioBroker.device-watcher/issues/299): blacklisted devices was shown in html-list
|
|
195
|
+
|
|
196
|
+
### 2.10.2 (2024-01-20)
|
|
197
|
+
|
|
198
|
+
- (ciddi89) Fixed: typeError for available adapter update messages
|
|
199
|
+
- (ciddi89) Fixed: Lists for updatable adapter
|
|
200
|
+
|
|
192
201
|
### 2.10.1 (2024-01-15)
|
|
193
202
|
|
|
194
203
|
- (ciddi89) Fixed: several bugs from last version
|
package/admin/jsonConfig.json5
CHANGED
|
@@ -524,6 +524,8 @@
|
|
|
524
524
|
newLine: true,
|
|
525
525
|
type: 'text',
|
|
526
526
|
help: 'Format hh:mm',
|
|
527
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendAdapterUpdateTime; if(timePattern.test(value)) return true;return false;',
|
|
528
|
+
validatorNoSaveOnError: true,
|
|
527
529
|
},
|
|
528
530
|
},
|
|
529
531
|
},
|
|
@@ -622,6 +624,8 @@
|
|
|
622
624
|
newLine: true,
|
|
623
625
|
type: 'text',
|
|
624
626
|
help: 'Format hh:mm',
|
|
627
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendInstanceDeactivatedTime; if(timePattern.test(value)) return true;return false;',
|
|
628
|
+
validatorNoSaveOnError: true,
|
|
625
629
|
},
|
|
626
630
|
},
|
|
627
631
|
},
|
|
@@ -720,6 +724,8 @@
|
|
|
720
724
|
newLine: true,
|
|
721
725
|
type: 'text',
|
|
722
726
|
help: 'Format hh:mm',
|
|
727
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendInstanceFailedTime; if(timePattern.test(value)) return true;return false;',
|
|
728
|
+
validatorNoSaveOnError: true,
|
|
723
729
|
},
|
|
724
730
|
},
|
|
725
731
|
},
|
|
@@ -812,6 +818,8 @@
|
|
|
812
818
|
newLine: true,
|
|
813
819
|
type: 'text',
|
|
814
820
|
help: 'Format hh:mm',
|
|
821
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendOfflineTime; if(timePattern.test(value)) return true;return false;',
|
|
822
|
+
validatorNoSaveOnError: true,
|
|
815
823
|
},
|
|
816
824
|
},
|
|
817
825
|
},
|
|
@@ -904,6 +912,8 @@
|
|
|
904
912
|
newLine: true,
|
|
905
913
|
type: 'text',
|
|
906
914
|
help: 'Format hh:mm',
|
|
915
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendBatteryTime; if(timePattern.test(value)) return true;return false;',
|
|
916
|
+
validatorNoSaveOnError: true,
|
|
907
917
|
},
|
|
908
918
|
},
|
|
909
919
|
},
|
|
@@ -996,6 +1006,8 @@
|
|
|
996
1006
|
newLine: true,
|
|
997
1007
|
type: 'text',
|
|
998
1008
|
help: 'Format hh:mm',
|
|
1009
|
+
validator: 'const timePattern = /^(?:[01]\\d|2[0-3]):[0-5]\\d$/; const value = data.checkSendUpgradeTime; if(timePattern.test(value)) return true;return false;',
|
|
1010
|
+
validatorNoSaveOnError: true,
|
|
999
1011
|
},
|
|
1000
1012
|
},
|
|
1001
1013
|
},
|