iobroker.lorawan 1.22.1 → 1.22.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/admin/jsonConfig.json +0 -1
- package/io-package.json +14 -14
- package/lib/modules/assignhandler.js +2 -2
- package/lib/modules/deviceManager/bridgeDevices.js +1 -1
- package/lib/modules/deviceManager/lorawanDevices.js +1 -1
- package/lib/modules/deviceManager/toIobDevices.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
24
24
|
Placeholder for the next version (at the beginning of the line):
|
|
25
25
|
### **WORK IN PROGRESS**
|
|
26
26
|
-->
|
|
27
|
+
### 1.22.2 (2026-04-07)
|
|
28
|
+
* (BenAhrdt) remove readOnly flag from jsonEditor
|
|
29
|
+
|
|
27
30
|
### 1.22.1 (2026-04-02)
|
|
28
31
|
* (BenAhrdt) add more roles to toIob devices
|
|
29
32
|
|
package/admin/jsonConfig.json
CHANGED
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.22.2": {
|
|
7
|
+
"en": "remove readOnly flag from jsonEditor",
|
|
8
|
+
"de": "readOnly flag von jsonEditor entfernen",
|
|
9
|
+
"ru": "удалить только флаг jsonEditor",
|
|
10
|
+
"pt": "remove readOnly flag do jsonEditor",
|
|
11
|
+
"nl": "readOnly-vlag verwijderen uit jsonEditor",
|
|
12
|
+
"fr": "supprimer readOnly drapeau de jsonEditor",
|
|
13
|
+
"it": "rimuovere readOnly flag da jsonEditor",
|
|
14
|
+
"es": "eliminar readOnly flag de jsonEditor",
|
|
15
|
+
"pl": "usuń flagę readOnly z jsonEditor",
|
|
16
|
+
"uk": "remove readOnly прапорець з jsonEditor",
|
|
17
|
+
"zh-cn": "从json编辑器中删除只读的旗"
|
|
18
|
+
},
|
|
6
19
|
"1.22.1": {
|
|
7
20
|
"en": "add more roles to toIob devices",
|
|
8
21
|
"de": "weitere Rollen zu Iob-Geräten hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodaj enum query do jakości powietrza",
|
|
81
94
|
"uk": "додати конвертер для якості повітря",
|
|
82
95
|
"zh-cn": "在空气质量中添加enum查询"
|
|
83
|
-
},
|
|
84
|
-
"1.21.27": {
|
|
85
|
-
"en": "bugfix airqulity",
|
|
86
|
-
"de": "bugfix luftmenge",
|
|
87
|
-
"ru": "багфикс airlity",
|
|
88
|
-
"pt": "errorfix airqulity",
|
|
89
|
-
"nl": "bugfix airqulity",
|
|
90
|
-
"fr": "bugfix airqulity",
|
|
91
|
-
"it": "bugfix airqulity",
|
|
92
|
-
"es": "bugfix airqulity",
|
|
93
|
-
"pl": "bugfix airquality",
|
|
94
|
-
"uk": "български, english, українська..",
|
|
95
|
-
"zh-cn": "错误修正空格"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -549,7 +549,7 @@ class assignhandlerClass {
|
|
|
549
549
|
},
|
|
550
550
|
},
|
|
551
551
|
},
|
|
552
|
-
TempC_DS: {
|
|
552
|
+
/*TempC_DS: { outcommented 02.04.2026
|
|
553
553
|
approvedFolders: {
|
|
554
554
|
'uplink.decoded': {
|
|
555
555
|
assignfunction: this.commonAssign,
|
|
@@ -559,7 +559,7 @@ class assignhandlerClass {
|
|
|
559
559
|
},
|
|
560
560
|
},
|
|
561
561
|
},
|
|
562
|
-
}
|
|
562
|
+
},*/
|
|
563
563
|
TempC_SHT: {
|
|
564
564
|
approvedFolders: {
|
|
565
565
|
'uplink.decoded': {
|
|
@@ -388,7 +388,7 @@ class bridgeDevicesClass {
|
|
|
388
388
|
type: 'text',
|
|
389
389
|
readOnly: true,
|
|
390
390
|
minRows: 10,
|
|
391
|
-
maxRows:
|
|
391
|
+
maxRows: 30,
|
|
392
392
|
};
|
|
393
393
|
const sortedDiscovery = [...this.adapter.objectStore.bridge.devices[id].discovery].sort(
|
|
394
394
|
(a, b) => b.lastDiscover.ts - a.lastDiscover.ts,
|
|
@@ -418,7 +418,7 @@ class lorawanDevicesClass {
|
|
|
418
418
|
type: 'text',
|
|
419
419
|
readOnly: true,
|
|
420
420
|
minRows: 10,
|
|
421
|
-
maxRows:
|
|
421
|
+
maxRows: 30,
|
|
422
422
|
};
|
|
423
423
|
const sortedUplinkDecoded = this.sortObjectDeep(this.adapter.objectStore.lorawan.devices[id].uplink.decoded);
|
|
424
424
|
data.uplinkDecoded = JSON.stringify(this.extractStateValues(sortedUplinkDecoded), null, 2);
|