iobroker.lorawan 1.18.17 → 1.18.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 +3 -0
- package/io-package.json +14 -14
- package/lib/modules/bridge.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
23
23
|
Placeholder for the next version (at the beginning of the line):
|
|
24
24
|
### **WORK IN PROGRESS**
|
|
25
25
|
-->
|
|
26
|
+
### 1.18.18 (2025-11-25)
|
|
27
|
+
* (BenAhrdt) Bugfix limit sitch topic to state_topic
|
|
28
|
+
|
|
26
29
|
### 1.18.17 (2025-11-25)
|
|
27
30
|
* (BenAhrdt) Bugfix limit switch closed
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.18",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.18": {
|
|
7
|
+
"en": "Bugfix limit sitch topic to state_topic",
|
|
8
|
+
"de": "Bugfix limit sitch Thema zu state_topic",
|
|
9
|
+
"ru": "Bugfix ограничивает тему ситча state_topic",
|
|
10
|
+
"pt": "Assunto de configuração limite de Bugfix para state_topic",
|
|
11
|
+
"nl": "Bugfix limit sitch topic to state_topic",
|
|
12
|
+
"fr": "Bugfix limit sitch topic to state_topic",
|
|
13
|
+
"it": "Bugfix limit sitch argomento a state_topic",
|
|
14
|
+
"es": "Bugfix límite de sitch tema a state_topic",
|
|
15
|
+
"pl": "Temat limit bugfix do stanu _ topic",
|
|
16
|
+
"uk": "Виправлення ліміту висихання до стану_topic",
|
|
17
|
+
"zh-cn": "错误fix 将 sitch 话题限制为状态_ title"
|
|
18
|
+
},
|
|
6
19
|
"1.18.17": {
|
|
7
20
|
"en": "Bugfix limit switch closed",
|
|
8
21
|
"de": "Bugfix Endschalter geschlossen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Bugfix fx w przypadku liczby",
|
|
81
94
|
"uk": "Виправлення помилок при кількості",
|
|
82
95
|
"zh-cn": "如果出现数字, 错误fx"
|
|
83
|
-
},
|
|
84
|
-
"1.18.11": {
|
|
85
|
-
"en": "Bugfix fx for published ids",
|
|
86
|
-
"de": "Bugfix fx für veröffentlichte ids",
|
|
87
|
-
"ru": "Bugfix fx для опубликованных идентификаторов",
|
|
88
|
-
"pt": "Bugfix fx para IDs publicados",
|
|
89
|
-
"nl": "Bugfix fx voor gepubliceerde id's",
|
|
90
|
-
"fr": "Bugfix fx pour les ids publiés",
|
|
91
|
-
"it": "Bugfix fx per ids pubblicati",
|
|
92
|
-
"es": "Fx Bugfix para los ids publicados",
|
|
93
|
-
"pl": "Bugfix fx dla opublikowanych idów",
|
|
94
|
-
"uk": "Bugfix fx для опублікованих ids",
|
|
95
|
-
"zh-cn": "已发布 ID 的臭虫fx"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -2706,7 +2706,7 @@ class bridgeClass {
|
|
|
2706
2706
|
},
|
|
2707
2707
|
DiscoveryTopic,
|
|
2708
2708
|
DiscoveryPayload,
|
|
2709
|
-
`${
|
|
2709
|
+
`${coverTopic}${this.EndingState}`,
|
|
2710
2710
|
{ cover: true, message: { [openKey]: 'open', [closingKey]: 'closing' } },
|
|
2711
2711
|
);
|
|
2712
2712
|
}
|
|
@@ -2723,7 +2723,7 @@ class bridgeClass {
|
|
|
2723
2723
|
},
|
|
2724
2724
|
DiscoveryTopic,
|
|
2725
2725
|
DiscoveryPayload,
|
|
2726
|
-
`${
|
|
2726
|
+
`${coverTopic}${this.EndingState}`,
|
|
2727
2727
|
{
|
|
2728
2728
|
cover: true,
|
|
2729
2729
|
message: { [closedKey]: 'closed', [openingKey]: 'opening' },
|