iobroker.lorawan 1.20.17 → 1.20.19

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 CHANGED
@@ -23,6 +23,12 @@ 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.19 (2026-01-27)
27
+ * (BenAhrdt) bugfix incon set
28
+
29
+ ### 1.20.18 (2026-01-27)
30
+ * (BenAhrdt) bugfix nameing incomingTopic
31
+
26
32
  ### 1.20.17 (2026-01-27)
27
33
  * (BenAhrdt) implement Device details
28
34
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.20.17",
4
+ "version": "1.20.19",
5
5
  "news": {
6
+ "1.20.19": {
7
+ "en": "bugfix incon set",
8
+ "de": "bugfix incon set",
9
+ "ru": "багфикс incon set",
10
+ "pt": "conjunto de incons de correção de erros",
11
+ "nl": "bugfix-inconset",
12
+ "fr": "bugfix incon set",
13
+ "it": "set bugfix incon",
14
+ "es": "bugfix incon set",
15
+ "pl": "bugfix incon set",
16
+ "uk": "виправлення помилок",
17
+ "zh-cn": "装入套装错误"
18
+ },
19
+ "1.20.18": {
20
+ "en": "bugfix nameing incomingTopic",
21
+ "de": "bugfix Nameing eingehend Thema",
22
+ "ru": "bugfix Имя входящего Тема",
23
+ "pt": "correcção de erros a dar entrada Tópico",
24
+ "nl": "bugfix-naam binnenkomend Onderwerp",
25
+ "fr": "bugfix nominant entrant Thème",
26
+ "it": "bugfix nome in arrivo Argomento",
27
+ "es": "bugfix nombre entrante Tema",
28
+ "pl": "nadchodzące nazewnictwo bugfix Temat",
29
+ "uk": "виправлення ім'я користувача Головна",
30
+ "zh-cn": "正在接收错误修正名称 专题"
31
+ },
6
32
  "1.20.17": {
7
33
  "en": "implement Device details",
8
34
  "de": "durchführung Gerätedetails",
@@ -67,32 +93,6 @@
67
93
  "pl": "ulepszenie urządzenia Ikony menedżera i przyciski",
68
94
  "uk": "поліпшення пристрою Ім'я користувача",
69
95
  "zh-cn": "改进设备 管理器图标和按钮"
70
- },
71
- "1.20.10": {
72
- "en": "return to root getCnageInfo",
73
- "de": "zurück zu root getCnageInfo",
74
- "ru": "вернуться в root getCnageInfo",
75
- "pt": "voltar ao root getCnageInfo",
76
- "nl": "terug naar root getCnageInfo",
77
- "fr": "retour à la racine getCnageInfo",
78
- "it": "ritorno a root getCnageInfo",
79
- "es": "volver a root getCnageInfo",
80
- "pl": "powrót do root getCnageInfo",
81
- "uk": "повернення в корінь GetCnageInfo",
82
- "zh-cn": "返回到 root 获取CnageInfo"
83
- },
84
- "1.20.9": {
85
- "en": "experimental for form",
86
- "de": "experiment für form",
87
- "ru": "экспериментальная форма",
88
- "pt": "experimental para forma",
89
- "nl": "experimenteel voor vorm",
90
- "fr": "expérimental pour la forme",
91
- "it": "sperimentale per forma",
92
- "es": "experimental para forma",
93
- "pl": "eksperymentalne dla formy",
94
- "uk": "експериментальна форма",
95
- "zh-cn": "实验形式"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -116,7 +116,7 @@ class bridgeMqttClientClass {
116
116
  if (await this.adapter.objectExists('bridge.debug.incomingTopic')) {
117
117
  if (topic.includes(this.filter.incoming)) {
118
118
  await this.adapter.setState('bridge.debug.incomingTopic', topic, true);
119
- await this.adapter.setState('bridge.debug.incommngPayload', payload, true);
119
+ await this.adapter.setState('bridge.debug.incomingPayload', payload, true);
120
120
  }
121
121
  }
122
122
 
@@ -142,7 +142,7 @@ class LoRaWANDeviceManagement extends DeviceManagement {
142
142
  hub5: 'hub5',
143
143
  controller: 'controller',
144
144
  };
145
- if (deviceValue.indicators) {
145
+ if (deviceValue.detectedRoles) {
146
146
  if (deviceValue.detectedRoles['level.temperature']) {
147
147
  return possibleIcons.thermostat;
148
148
  } else if (deviceValue.detectedRoles['sensor.door']) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.20.17",
3
+ "version": "1.20.19",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",