iobroker.zigbee 1.8.17 → 1.8.18
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 +4 -0
- package/io-package.json +14 -14
- package/main.js +2 -2
- package/package.json +1 -1
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.18",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.8.18": {
|
|
7
|
+
"en": "little fix sentry and error log\n",
|
|
8
|
+
"de": "kleines fix-sende- und fehlerprotokoll\n",
|
|
9
|
+
"ru": "мало исправлена отправка и ошибка журнала\n",
|
|
10
|
+
"pt": "pequena correção sentinela e log de erro\n",
|
|
11
|
+
"nl": "kleine herstellende sentimentele logboek\n",
|
|
12
|
+
"fr": "petit journal de réparation et d'erreur\n",
|
|
13
|
+
"it": "piccolo fix registro di errore\n",
|
|
14
|
+
"es": "pequeño solucion centry y error log\n",
|
|
15
|
+
"pl": "wadliwość i błąd\n",
|
|
16
|
+
"uk": "маленька фіксація відправлень і журнал помилок\n",
|
|
17
|
+
"zh-cn": "很少发送过材料和错误逻辑\n"
|
|
18
|
+
},
|
|
6
19
|
"1.8.17": {
|
|
7
20
|
"en": "sentry corr",
|
|
8
21
|
"de": "versand",
|
|
@@ -44,19 +57,6 @@
|
|
|
44
57
|
"1.8.10": {
|
|
45
58
|
"en": "fix group access and any new functions",
|
|
46
59
|
"de": "fix group access and any new functions"
|
|
47
|
-
},
|
|
48
|
-
"1.8.9": {
|
|
49
|
-
"en": "fix lidl plug",
|
|
50
|
-
"de": "deckelstecker",
|
|
51
|
-
"ru": "исправить lidl plug",
|
|
52
|
-
"pt": "fixar tampa",
|
|
53
|
-
"nl": "los deksel",
|
|
54
|
-
"fr": "fixer le couvercle",
|
|
55
|
-
"it": "correzione della spina del coperchio",
|
|
56
|
-
"es": "enchufe de tapa fija",
|
|
57
|
-
"pl": "naprawiony plug",
|
|
58
|
-
"uk": "фіксувати роз'єм",
|
|
59
|
-
"zh-cn": "fix 滑坡"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"title": "Zigbee",
|
package/main.js
CHANGED
|
@@ -120,7 +120,7 @@ class Zigbee extends utils.Adapter {
|
|
|
120
120
|
scope.addBreadcrumb({
|
|
121
121
|
type: 'error', // predefined types
|
|
122
122
|
category: 'error message',
|
|
123
|
-
level:
|
|
123
|
+
level: 'error',
|
|
124
124
|
message
|
|
125
125
|
}));
|
|
126
126
|
}
|
|
@@ -788,7 +788,7 @@ class Zigbee extends utils.Adapter {
|
|
|
788
788
|
await this.publishFromState(`0x${payload.device}`, '', undefined, stateList, payload.options);
|
|
789
789
|
return {success: true};
|
|
790
790
|
} catch (error) {
|
|
791
|
-
this.log.error(`Error ${error.code} on send command to ${payload.device}.` + ` Error: ${error.stack} ` + `Send command to ${payload.device} failed with ` + error;
|
|
791
|
+
this.log.error(`Error ${error.code} on send command to ${payload.device}.` + ` Error: ${error.stack} ` + `Send command to ${payload.device} failed with ` + error);
|
|
792
792
|
this.filterError(`Error ${error.code} on send command to ${payload.device}.` + ` Error: ${error.stack}`, `Send command to ${payload.device} failed with`, error);
|
|
793
793
|
return {success: false, error};
|
|
794
794
|
}
|