iobroker.zigbee 1.8.20 → 1.8.21
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 +3 -0
- package/io-package.json +14 -5
- package/main.js +7 -7
- package/package.json +2 -2
package/README.md
CHANGED
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "zigbee",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.21",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.8.21": {
|
|
7
|
+
"en": "no converter found",
|
|
8
|
+
"de": "kein konverter gefunden",
|
|
9
|
+
"ru": "не найдено конвертер",
|
|
10
|
+
"pt": "não encontrado",
|
|
11
|
+
"nl": "geen converter gevonden",
|
|
12
|
+
"fr": "aucun convertisseur trouvé",
|
|
13
|
+
"it": "nessun convertitore trovato",
|
|
14
|
+
"es": "no convertidor encontrado",
|
|
15
|
+
"pl": "nie znaleziono konwerterów",
|
|
16
|
+
"uk": "не знайдено",
|
|
17
|
+
"zh-cn": "未找到转换器"
|
|
18
|
+
},
|
|
6
19
|
"1.8.20": {
|
|
7
20
|
"en": "add log",
|
|
8
21
|
"de": "log",
|
|
@@ -71,10 +84,6 @@
|
|
|
71
84
|
"1.8.13": {
|
|
72
85
|
"en": "see Readme https://github.com/ioBroker/ioBroker.zigbee/blob/master/README.md",
|
|
73
86
|
"de": "see Readme https://github.com/ioBroker/ioBroker.zigbee/blob/master/README.md"
|
|
74
|
-
},
|
|
75
|
-
"1.8.12": {
|
|
76
|
-
"en": "new Documentation",
|
|
77
|
-
"de": "neue Dokumentation"
|
|
78
87
|
}
|
|
79
88
|
},
|
|
80
89
|
"title": "Zigbee",
|
package/main.js
CHANGED
|
@@ -551,9 +551,9 @@ class Zigbee extends utils.Adapter {
|
|
|
551
551
|
}
|
|
552
552
|
};
|
|
553
553
|
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
554
|
+
for (const converter of converters) {
|
|
555
|
+
this.stController.collectOptions(devId, model, (options) => {
|
|
556
|
+
try {
|
|
557
557
|
payload = converter.convert(mappedModel, message, publish, options, meta);
|
|
558
558
|
|
|
559
559
|
if (payload) {
|
|
@@ -561,10 +561,10 @@ class Zigbee extends utils.Adapter {
|
|
|
561
561
|
publish(payload);
|
|
562
562
|
}
|
|
563
563
|
}
|
|
564
|
-
})
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
564
|
+
} catch (err) {
|
|
565
|
+
this.log.warn(`convert problem with '${model}' '${devId}' `);
|
|
566
|
+
}
|
|
567
|
+
});
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
570
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.zigbee",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.21",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Kirov Ilya",
|
|
6
6
|
"email": "kirovilya@gmail.com"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"tar": "^6.1.15",
|
|
26
26
|
"typescript": "^5.1.6",
|
|
27
27
|
"zigbee-herdsman": "0.17.2",
|
|
28
|
-
"zigbee-herdsman-converters": "15.
|
|
28
|
+
"zigbee-herdsman-converters": "15.50.0"
|
|
29
29
|
},
|
|
30
30
|
"description": "Zigbee devices",
|
|
31
31
|
"devDependencies": {
|