iobroker.lorawan 1.22.27 → 1.22.28
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 -3
- package/io-package.json +14 -14
- package/lib/modules/assignhandler.js +10 -0
- 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.28 (2026-07-05)
|
|
28
|
+
- (BenAhrdt) Add DewPointTemperature to assignhandler
|
|
29
|
+
|
|
27
30
|
### 1.22.27 (2026-07-04)
|
|
28
31
|
- (BenAhrdt) Bugfix warning for wrong id
|
|
29
32
|
- (BenAhrdt) Add Profile to downloadconfig
|
|
@@ -38,9 +41,6 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
38
41
|
### 1.22.24 (2026-06-24)
|
|
39
42
|
- (BenAhrdt) Add Absolute Humidity to device_class
|
|
40
43
|
|
|
41
|
-
### 1.22.23 (2026-06-17)
|
|
42
|
-
- (BenAhrdt) setTimeout changed into this.adapter.SetTimeout
|
|
43
|
-
|
|
44
44
|
[Older changes can be found there](CHANGELOG_OLD.md)
|
|
45
45
|
|
|
46
46
|
## License
|
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.28",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.22.28": {
|
|
7
|
+
"en": "Add DewPointTemperature to assignhandler",
|
|
8
|
+
"de": "Füge DewPointTemperature zum Zuweisungshandler hinzu.",
|
|
9
|
+
"ru": "Добавьте DewPointTemperature в assignhandler",
|
|
10
|
+
"pt": "Adicione DewPointTemperature ao assignhandler",
|
|
11
|
+
"nl": "Voeg DewPointTemperature toe aan assignhandler",
|
|
12
|
+
"fr": "Ajouter DewPointTemperature à assignhandler",
|
|
13
|
+
"it": "Aggiungi DewPointTemperature all'assignhandler",
|
|
14
|
+
"es": "Agregar DewPointTemperature a assignhandler",
|
|
15
|
+
"pl": "Dodaj DewPointTemperature do assignhandler",
|
|
16
|
+
"uk": "Додати DewPointTemperature до assignhandler",
|
|
17
|
+
"zh-cn": "将露点温度添加到赋值处理程序"
|
|
18
|
+
},
|
|
6
19
|
"1.22.27": {
|
|
7
20
|
"en": "Bugfix warning for wrong id\nAdd Profile to downloadconfig",
|
|
8
21
|
"de": "Bugfix-Warnung wegen falscher ID\nProfil zu downloadconfig hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Usuń zapis ostatnich 10 wartości przy odbieraniu i wiadomości publicznej",
|
|
81
94
|
"uk": "Видалити письмове повідомлення про останні 10",
|
|
82
95
|
"zh-cn": "删除最后 10 个值在接收时的写入和公开消息"
|
|
83
|
-
},
|
|
84
|
-
"1.22.21": {
|
|
85
|
-
"en": "Changed setTimeout to this.adapter.setTimeout",
|
|
86
|
-
"de": "Geändert setTimeout zu this.adapter.setTimeout",
|
|
87
|
-
"ru": "Изменить setTimeout на this.adapter.setTimeout",
|
|
88
|
-
"pt": "SetTimeout alterado para este.adapter.setTimeout",
|
|
89
|
-
"nl": "Veranderde setTimeout naar deze.adapter.setTimeout",
|
|
90
|
-
"fr": "Changed setTimeout to this.adapter.setTimeout",
|
|
91
|
-
"it": "Modificato il timeout a questo.adapter.setTimeout",
|
|
92
|
-
"es": "Cambio de configuraciónTiempo a este.adapter.setTimeout",
|
|
93
|
-
"pl": "Zmieniono timeout do tego. Adapter. setTimeout",
|
|
94
|
-
"uk": "Змінено setTimeout в this.adapter.setTimeout",
|
|
95
|
-
"zh-cn": "更改了设置 Timeout 到此. adapter. set Timeout"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -135,6 +135,16 @@ class assignhandlerClass {
|
|
|
135
135
|
},
|
|
136
136
|
},
|
|
137
137
|
},
|
|
138
|
+
DewPointTemperature: {
|
|
139
|
+
approvedFolders: {
|
|
140
|
+
'uplink.decoded': {
|
|
141
|
+
assignfunction: this.commonAssign,
|
|
142
|
+
common: {
|
|
143
|
+
unit: '°C',
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
},
|
|
138
148
|
DoorOpen: {
|
|
139
149
|
approvedFolders: {
|
|
140
150
|
'uplink.decoded': {
|