iobroker.lorawan 1.18.41 → 1.18.42
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/bridge.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.18.42 (2025-12-01)
|
|
27
|
+
* (BenAhrdt) change gate to garage_door in binary_sensor
|
|
28
|
+
|
|
26
29
|
### 1.18.41 (2025-12-01)
|
|
27
30
|
* (BenAhrdt) change sending the payload in case of light
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.42",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.42": {
|
|
7
|
+
"en": "change gate to garage_door in binary_sensor",
|
|
8
|
+
"de": "ändern sie das tor zu garage_door in binär_sensor",
|
|
9
|
+
"ru": "скачать игру garage_door in binary_sensor",
|
|
10
|
+
"pt": "mudar portão para garage_door em binário_sensor",
|
|
11
|
+
"nl": "poort wijzigen naar garage_deur in binaire _sensor",
|
|
12
|
+
"fr": "changer la porte en garage_door en binaire_sensor",
|
|
13
|
+
"it": "cambiare cancello a garage_door in binario_sensor",
|
|
14
|
+
"es": "cambio de puerta a garage_door en binario_sensor",
|
|
15
|
+
"pl": "zmiana bramy na garaż _ door w binarnym _ sensor",
|
|
16
|
+
"uk": "змінити ворота в гараж_критий в бінарних_сенсор",
|
|
17
|
+
"zh-cn": "在二进制中将门改为车库_门_传感器"
|
|
18
|
+
},
|
|
6
19
|
"1.18.41": {
|
|
7
20
|
"en": "change sending the payload in case of light",
|
|
8
21
|
"de": "änderung des sendens der nutzlast bei licht",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "fist possibilty to change unlatch on lock entity\nDodaj wersję do odkrycia\nDodaj przez urządzenie do odkrycia",
|
|
81
94
|
"uk": "fist possibillity змінити unlatch на суб'єкті блокування\nДодати версію для відкриття\nДодати через пристрій для відкриття",
|
|
82
95
|
"zh-cn": "在锁实体上更改未匹配的拳头特性\n在发现中添加版本\n通过设备添加到发现"
|
|
83
|
-
},
|
|
84
|
-
"1.18.35": {
|
|
85
|
-
"en": "internal code improovment for better reading",
|
|
86
|
-
"de": "interner code improovement für besseres lesen",
|
|
87
|
-
"ru": "импровизация внутреннего кода для лучшего чтения",
|
|
88
|
-
"pt": "improvisação de código interno para melhor leitura",
|
|
89
|
-
"nl": "interne code improvisatie voor beter lezen",
|
|
90
|
-
"fr": "imprégnation du code interne pour une meilleure lecture",
|
|
91
|
-
"it": "codice interno improovment per una migliore lettura",
|
|
92
|
-
"es": "improvimento de código interno para una mejor lectura",
|
|
93
|
-
"pl": "improwizacja kodu wewnętrznego dla lepszego czytania",
|
|
94
|
-
"uk": "внутрішня обробка коду для кращого читання",
|
|
95
|
-
"zh-cn": "内部代码即兴读取"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1534,7 +1534,7 @@ class bridgeClass {
|
|
|
1534
1534
|
} else if (role.includes('door')) {
|
|
1535
1535
|
attributes.device_class = 'door';
|
|
1536
1536
|
} else if (role.includes('gate')) {
|
|
1537
|
-
attributes.device_class = '
|
|
1537
|
+
attributes.device_class = 'door';
|
|
1538
1538
|
} else if (role.includes('lock')) {
|
|
1539
1539
|
attributes.device_class = 'lock';
|
|
1540
1540
|
} else if (role.includes('garage')) {
|