iobroker.lorawan 1.20.2 → 1.20.3
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/deviceManager.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.20.3 (2026-01-25)
|
|
27
|
+
* (BenAhrdt) bugfix device Manager
|
|
28
|
+
|
|
26
29
|
### 1.20.2 (2026-01-25)
|
|
27
30
|
* (BenAhrdt) bugfix device Manager and objectStore device checks
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.20.
|
|
4
|
+
"version": "1.20.3",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.20.3": {
|
|
7
|
+
"en": "bugfix device Manager",
|
|
8
|
+
"de": "bugfix Gerät Manager",
|
|
9
|
+
"ru": "bugfix устройство диспетчер",
|
|
10
|
+
"pt": "gerenciador de dispositivos de correção de erros",
|
|
11
|
+
"nl": "bugfix apparaatbeheer",
|
|
12
|
+
"fr": "gestionnaire de périphériques bugfix",
|
|
13
|
+
"it": "bugfix dispositivo Manager",
|
|
14
|
+
"es": "bugfix device Manager",
|
|
15
|
+
"pl": "menedżer urządzeń bugfix",
|
|
16
|
+
"uk": "диспетчер пристроїв",
|
|
17
|
+
"zh-cn": "错误修正设备管理器"
|
|
18
|
+
},
|
|
6
19
|
"1.20.2": {
|
|
7
20
|
"en": "bugfix device Manager and objectStore device checks",
|
|
8
21
|
"de": "bugfix device Manager und Objekt Geräteüberprüfungen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "bugfix czeka na to. ObjectExists",
|
|
81
94
|
"uk": "виправлено помилку. Об'єкти",
|
|
82
95
|
"zh-cn": "bugfix 等待这个 。 对象存在"
|
|
83
|
-
},
|
|
84
|
-
"1.19.31": {
|
|
85
|
-
"en": "add try catch for adding filter (strage bug)",
|
|
86
|
-
"de": "fügen sie versuchen zu fangen für das hinzufügen von filter (strge bug)",
|
|
87
|
-
"ru": "добавить try catch для добавления фильтра (strage bug)",
|
|
88
|
-
"pt": "adicionar tentativa de captura para adicionar filtro (erro de fita)",
|
|
89
|
-
"nl": "add catch for add filter (strage bug)",
|
|
90
|
-
"fr": "ajouter une capture pour ajouter un filtre",
|
|
91
|
-
"it": "aggiungere la cattura per l'aggiunta di filtro (insetto di sforzo)",
|
|
92
|
-
"es": "añadir probar captura para añadir filtro (falta de tracción)",
|
|
93
|
-
"pl": "dodaj chwyt do dodawania filtra (błąd strage)",
|
|
94
|
-
"uk": "додати намагатися ловити для додавання фільтра (перевірити помилки)",
|
|
95
|
-
"zh-cn": "添加添加过滤器的尝试抓取( strage bug)"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -40,7 +40,7 @@ class LoRaWANDeviceManagement extends DeviceManagement {
|
|
|
40
40
|
})
|
|
41
41
|
: undefined
|
|
42
42
|
: undefined,
|
|
43
|
-
model: value.checks.devicetype.state.val, // - ${value.uplink.remaining.rxInfo[0].rssi.ts}`,
|
|
43
|
+
model: value.checks ? value.checks.devicetype.state.val : undefined, // - ${value.uplink.remaining.rxInfo[0].rssi.ts}`,
|
|
44
44
|
status: await this.getStatus(value),
|
|
45
45
|
hasDetails: undefined,
|
|
46
46
|
actions: [
|