iobroker.lorawan 1.19.1 → 1.19.2
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/messagehandler.js +1 -1
- 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.19.2 (2026-01-03)
|
|
27
|
+
* (BenAhrdt) bugfix filldownlink
|
|
28
|
+
|
|
26
29
|
### 1.19.1 (2026-01-03)
|
|
27
30
|
* (BenAhrdt) bugfix device and replace debug logs for silly
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.19.
|
|
4
|
+
"version": "1.19.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.19.2": {
|
|
7
|
+
"en": "bugfix filldownlink",
|
|
8
|
+
"de": "fehlerbehebungen",
|
|
9
|
+
"ru": "bugfix filldownlink",
|
|
10
|
+
"pt": "ligação de preenchimento de correções de erros",
|
|
11
|
+
"nl": "bugfix filldownlink",
|
|
12
|
+
"fr": "bugfix remplissagelien",
|
|
13
|
+
"it": "bugfix filldownlink",
|
|
14
|
+
"es": "bugfix rellenolink",
|
|
15
|
+
"pl": "bugfix fishdownlink",
|
|
16
|
+
"uk": "javascript licenses api веб-сайт",
|
|
17
|
+
"zh-cn": "臭虫补全下行链路"
|
|
18
|
+
},
|
|
6
19
|
"1.19.1": {
|
|
7
20
|
"en": "bugfix device and replace debug logs for silly",
|
|
8
21
|
"de": "bugfix gerät und ersetzen debug protokolle für albern",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "błąd bugfix",
|
|
81
94
|
"uk": "повідомлень про помилку",
|
|
82
95
|
"zh-cn": "错误修正错误日志"
|
|
83
|
-
},
|
|
84
|
-
"1.18.59": {
|
|
85
|
-
"en": "Chuck checkAllStatesForBridgeWork for better performance",
|
|
86
|
-
"de": "Chuck-Check AllStatesForBridgeWork für bessere Leistung",
|
|
87
|
-
"ru": "Проверка Чака AllStatesForBridgeWork для повышения производительности",
|
|
88
|
-
"pt": "Chuck, verifica. AllStatesForBridgeTrabalhar para melhor desempenho",
|
|
89
|
-
"nl": "Chuck check AllStatesForBridgeWork voor betere prestaties",
|
|
90
|
-
"fr": "Contrôle Chuck AllStatesForBridgeWork pour une meilleure performance",
|
|
91
|
-
"it": "Controllo Chuck AllStatesForBridgeWork per prestazioni migliori",
|
|
92
|
-
"es": "Chuck. AllStatesForBridgeWork para un mejor rendimiento",
|
|
93
|
-
"pl": "Chuck sprawdził Wszystkie państwa dla BridgeWork dla lepszej wydajności",
|
|
94
|
-
"uk": "Перевірка качки AllStatesForBridgeWork для кращої продуктивності",
|
|
95
|
-
"zh-cn": "查克检查 为更好的业绩而努力"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -148,7 +148,7 @@ class messagehandlerClass {
|
|
|
148
148
|
for (const adapterObject of Object.values(adapterObjectsAtStart)) {
|
|
149
149
|
if (
|
|
150
150
|
adapterObject.type === 'device' &&
|
|
151
|
-
!adapterObject.
|
|
151
|
+
!adapterObject._id.startsWith(`${this.adapter.namespace}.bridge`)
|
|
152
152
|
) {
|
|
153
153
|
await this.fillWithDownlinkConfig(this.adapter.removeNamespace(adapterObject._id), {
|
|
154
154
|
startup: true,
|