iobroker.lorawan 1.20.0 → 1.20.1
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 +8 -6
- 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.1 (2026-01-25)
|
|
27
|
+
* (BenAhrdt) bugfix device Manager
|
|
28
|
+
|
|
26
29
|
### 1.20.0 (2026-01-25)
|
|
27
30
|
* (BenAhrdt) add first Steps of device Manager
|
|
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.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.20.1": {
|
|
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.0": {
|
|
7
20
|
"en": "add first Steps of device Manager",
|
|
8
21
|
"de": "erste Schritte des Gerätemanagers hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodać symulację pozycji dla pokrycia",
|
|
81
94
|
"uk": "додати моделювання позиції для покриття",
|
|
82
95
|
"zh-cn": "添加覆盖位置模拟"
|
|
83
|
-
},
|
|
84
|
-
"1.19.29": {
|
|
85
|
-
"en": "bugfix tilt min & max",
|
|
86
|
-
"de": "bugfix neigung min & max",
|
|
87
|
-
"ru": "багфикс tilt min & max",
|
|
88
|
-
"pt": "min & max da inclinação do erro de correção",
|
|
89
|
-
"nl": "bugfix tilt min & max",
|
|
90
|
-
"fr": "bugfix inclinaison min & max",
|
|
91
|
-
"it": "bugfix tilt min & max",
|
|
92
|
-
"es": "bugfix tilt min < max",
|
|
93
|
-
"pl": "przechył bugfix min & max",
|
|
94
|
-
"uk": "виправлення tilt min & макс",
|
|
95
|
-
"zh-cn": "最大时长( u)"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -94,12 +94,14 @@ class LoRaWANDeviceManagement extends DeviceManagement {
|
|
|
94
94
|
* @param devicevalue values of device
|
|
95
95
|
*/
|
|
96
96
|
async getIcon(devicevalue) {
|
|
97
|
-
if (devicevalue.checks
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
if (devicevalue.checks) {
|
|
98
|
+
if (devicevalue.checks.isThermostat) {
|
|
99
|
+
return 'thermostat';
|
|
100
|
+
} else if (devicevalue.checks.isWindow) {
|
|
101
|
+
return 'window';
|
|
102
|
+
} else if (devicevalue.checks.isDoor) {
|
|
103
|
+
return 'door';
|
|
104
|
+
}
|
|
103
105
|
}
|
|
104
106
|
return `/adapter/${this.adapter.name}/icons/Node.png`; //${value.object.common.icon}`,
|
|
105
107
|
}
|