iobroker.lorawan 1.20.21 → 1.20.22
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.22 (2026-01-27)
|
|
27
|
+
* (BenAhrdt) change preasure quere to pressure
|
|
28
|
+
|
|
26
29
|
### 1.20.21 (2026-01-27)
|
|
27
30
|
* (BenAhrdt) set Details to informations and add icons for weateher station / humidity
|
|
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.22",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.20.22": {
|
|
7
|
+
"en": "change preasure quere to pressure",
|
|
8
|
+
"de": "voreinstellungsanfrage zum druck ändern",
|
|
9
|
+
"ru": "изменение преасмента к давлению",
|
|
10
|
+
"pt": "mudança preasure quere à pressão",
|
|
11
|
+
"nl": "verandering preasure quere aan druk",
|
|
12
|
+
"fr": "changement de mesure quere à pression",
|
|
13
|
+
"it": "cambiare la quere preasure alla pressione",
|
|
14
|
+
"es": "cambiar preasure quere a presión",
|
|
15
|
+
"pl": "zmiana preasure quere do ciśnienia",
|
|
16
|
+
"uk": "змінити запобіжний привід для тиску",
|
|
17
|
+
"zh-cn": "将预置排程改为压力"
|
|
18
|
+
},
|
|
6
19
|
"1.20.21": {
|
|
7
20
|
"en": "set Details to informations and add icons for weateher station / humidity",
|
|
8
21
|
"de": "set Details zu Informationen und Icons für Weateher Station / Feuchtigkeit hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodać informacje do urządzenia Manager",
|
|
81
94
|
"uk": "додати інформацію в диспетчер пристроїв",
|
|
82
95
|
"zh-cn": "向设备管理器添加信息"
|
|
83
|
-
},
|
|
84
|
-
"1.20.15": {
|
|
85
|
-
"en": "sort output for informations",
|
|
86
|
-
"de": "sortierausgabe für informationen",
|
|
87
|
-
"ru": "сортировать выход для информации",
|
|
88
|
-
"pt": "sort output para informações",
|
|
89
|
-
"nl": "uitvoer voor informatie sorteren",
|
|
90
|
-
"fr": "trier la sortie pour les informations",
|
|
91
|
-
"it": "sort output per informazioni",
|
|
92
|
-
"es": "salida de tipo para información",
|
|
93
|
-
"pl": "sortowanie wyników dla informacji",
|
|
94
|
-
"uk": "сортування інформації",
|
|
95
|
-
"zh-cn": "信息排序输出"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -150,7 +150,7 @@ class LoRaWANDeviceManagement extends DeviceManagement {
|
|
|
150
150
|
} else if (deviceValue.detectedRoles['sensor.window']) {
|
|
151
151
|
return possibleIcons.window;
|
|
152
152
|
} else if (deviceValue.detectedRoles['value.temperature']) {
|
|
153
|
-
if (deviceValue.detectedRoles['value.
|
|
153
|
+
if (deviceValue.detectedRoles['value.pressure']) {
|
|
154
154
|
return possibleIcons.weatherCurrent;
|
|
155
155
|
}
|
|
156
156
|
if (deviceValue.detectedRoles['value.humidity']) {
|