iobroker.lorawan 1.18.19 → 1.18.20
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 +5 -0
- 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.20 (2025-11-26)
|
|
27
|
+
* (BenAhrdt) Dont write discovery multiple in internal object (in case of reconnect bridge)
|
|
28
|
+
|
|
26
29
|
### 1.18.19 (2025-11-26)
|
|
27
30
|
* (BenAhrdt) possibility to publish one id in spezial and normal entity
|
|
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.20",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.20": {
|
|
7
|
+
"en": "Dont write discovery multiple in internal object (in case of reconnect bridge)",
|
|
8
|
+
"de": "Schreibe nicht mehrere Entdeckungen im internen Objekt (im Falle der Wiederverbindungsbrücke)",
|
|
9
|
+
"ru": "Не записывайте открытие множественного числа во внутренний объект (в случае повторного подключения моста)",
|
|
10
|
+
"pt": "Não escreva múltiplas descobertas em objeto interno (no caso de reconectar ponte)",
|
|
11
|
+
"nl": "Niet schrijven ontdekking meerdere in interne object (in het geval van reconnect brug)",
|
|
12
|
+
"fr": "Ne pas écrire la découverte multiple dans l'objet interne (en cas de reconnect pont)",
|
|
13
|
+
"it": "Non scrivere la scoperta multipla in oggetto interno (in caso di riconnettere il ponte)",
|
|
14
|
+
"es": "No escriba descubrimiento múltiple en objeto interno (en caso de puente de reconexión)",
|
|
15
|
+
"pl": "Nie pisz wielokrotnego odkrycia w obiekcie wewnętrznym (w przypadku ponownego podłączenia mostu)",
|
|
16
|
+
"uk": "Не писати відкриття декількох в внутрішньому об'єкті (у разі відключення мосту)",
|
|
17
|
+
"zh-cn": "不要在内部对象中写入多个发现( 如果是重联桥)"
|
|
18
|
+
},
|
|
6
19
|
"1.18.19": {
|
|
7
20
|
"en": "possibility to publish one id in spezial and normal entity",
|
|
8
21
|
"de": "möglichkeit, eine id in spezial und normal zu veröffentlichen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodaj pokrycie do specjalnych urządzeń",
|
|
81
94
|
"uk": "додати чохол на спеціальні пристрої",
|
|
82
95
|
"zh-cn": "将封面添加到特殊设备"
|
|
83
|
-
},
|
|
84
|
-
"1.18.13": {
|
|
85
|
-
"en": "Bugfix: wrong subscribtion of fx ids",
|
|
86
|
-
"de": "Bugfix: falsche Anmeldung von fx ids",
|
|
87
|
-
"ru": "Bugfix: неправильная подписка на fx ids",
|
|
88
|
-
"pt": "Correção de Bugfix: subscrita errada de fx ids",
|
|
89
|
-
"nl": "Bugfix: verkeerde subscriptie van fx ids",
|
|
90
|
-
"fr": "Bugfix : mauvaise subscribtion des ids fx",
|
|
91
|
-
"it": "Bugfix: sottoscrizione sbagliata di fx ids",
|
|
92
|
-
"es": "Bugfix: la subscripción incorrecta de los ids de fx",
|
|
93
|
-
"pl": "Bugfix: błędna subskrypcja fix ids",
|
|
94
|
-
"uk": "Помилки: неправильне підсобнення попелиці",
|
|
95
|
-
"zh-cn": "错误fix: fx ID 的子缩写错误"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1665,6 +1665,11 @@ class bridgeClass {
|
|
|
1665
1665
|
// get old Discovered ids
|
|
1666
1666
|
this.OldDiscoveredIds = JSON.parse((await this.adapter.getStateAsync('info.discoveredIds')).val);
|
|
1667
1667
|
this.oldDiscoveredDevices = this.generateOldDevices(this.OldDiscoveredIds);
|
|
1668
|
+
// Clear object of all subscribed Ids and published Topics
|
|
1669
|
+
this.SubscribedTopics = {};
|
|
1670
|
+
this.PublishedIds = {};
|
|
1671
|
+
this.Notifications = {};
|
|
1672
|
+
|
|
1668
1673
|
//this.adapter.log.error(JSON.stringify(this.oldDiscoveredDevices));
|
|
1669
1674
|
await this.discoverGeneralNotification();
|
|
1670
1675
|
|