iobroker.lorawan 1.14.1 → 1.14.2
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.14.2 (2025-09-11)
|
|
27
|
+
* (BenAhrdt) Bugfix Climate current_temperature topic
|
|
28
|
+
|
|
26
29
|
### 1.14.1 (2025-09-11)
|
|
27
30
|
* (BenAhrdt) Bugfix unique_id of climate entities
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.14.2": {
|
|
7
|
+
"en": "Bugfix climate current_temperature topic",
|
|
8
|
+
"de": "Bugfix climate current_temperature Topic",
|
|
9
|
+
"ru": "Исправлена ошибка в climate current_temperature topic",
|
|
10
|
+
"pt": "Correção de bug no climate current_temperature topic",
|
|
11
|
+
"nl": "Bugfix climate current_temperature topic",
|
|
12
|
+
"fr": "Correction de bug sur le climate current_temperature topic",
|
|
13
|
+
"it": "Correzione bug climate current_temperature topic",
|
|
14
|
+
"es": "Corrección de error en climate current_temperature topic",
|
|
15
|
+
"pl": "Poprawka błędu climate current_temperature topic",
|
|
16
|
+
"uk": "Виправлення помилки в climate current_temperature topic",
|
|
17
|
+
"zh-cn": "修复 climate current_temperature topic 的错误"
|
|
18
|
+
},
|
|
6
19
|
"1.14.1": {
|
|
7
20
|
"en": "Bugfix unique_id of climate entities",
|
|
8
21
|
"de": "Bugfix unique_id von Climate-Entities",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Poprawka błędu przy wyborze stanów i state_class",
|
|
81
94
|
"uk": "Виправлення помилки вибору станів та state_class",
|
|
82
95
|
"zh-cn": "修复状态和 state_class 的选择错误"
|
|
83
|
-
},
|
|
84
|
-
"1.13.10": {
|
|
85
|
-
"en": "Change time format in Info states and improve logging in case of state change\nAdd possibility to activate / deactivate cron for cyclic discovery",
|
|
86
|
-
"de": "Zeitformat in Info-States ändern und Logging bei Zustandsänderung verbessern\nMöglichkeit hinzufügen, Cron für zyklische Erkennung zu aktivieren/deaktivieren",
|
|
87
|
-
"ru": "Изменение формата времени в информационных состояниях и улучшение логирования при изменении состояния\nДобавлена возможность включать/отключать cron для циклического обнаружения",
|
|
88
|
-
"pt": "Alterar formato de hora nos estados de informação e melhorar o registro em caso de alteração de estado\nAdicionar possibilidade de ativar/desativar cron para descoberta cíclica",
|
|
89
|
-
"nl": "Tijdformaat wijzigen in Info-states en logging verbeteren bij statuswijziging\nMogelijkheid toevoegen om cron voor cyclische detectie te activeren/deactiveren",
|
|
90
|
-
"fr": "Modifier le format de l'heure dans les états d'info et améliorer la journalisation en cas de changement d'état\nAjouter la possibilité d'activer/désactiver le cron pour la découverte cyclique",
|
|
91
|
-
"it": "Modificare il formato dell'ora negli stati Info e migliorare il logging in caso di cambiamento di stato\nAggiunta la possibilità di attivare/disattivare il cron per la scoperta ciclica",
|
|
92
|
-
"es": "Cambiar formato de hora en estados de información y mejorar el registro en caso de cambio de estado\nAgregar posibilidad de activar/desactivar cron para descubrimiento cíclico",
|
|
93
|
-
"pl": "Zmiana formatu czasu w stanach informacyjnych i ulepszenie logowania w przypadku zmiany stanu\nDodano możliwość aktywacji/dezaktywacji crona dla cyklicznego wykrywania",
|
|
94
|
-
"uk": "Зміна формату часу в інформаційних станах та покращення логування у випадку зміни стану\nДодано можливість активувати/деактивувати cron для циклічного виявлення",
|
|
95
|
-
"zh-cn": "在信息状态中更改时间格式并改进状态更改时的日志记录\n添加启用/禁用循环发现的 cron 的可能性"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -304,7 +304,7 @@ class bridgeClass {
|
|
|
304
304
|
mode_command_topic: `${mode.Topic}${this.EndingSet}`,
|
|
305
305
|
temperature_state_topic: `${target.Topic}${this.EndingState}`,
|
|
306
306
|
temperature_command_topic: `${target.Topic}${this.EndingSet}`,
|
|
307
|
-
current_temperature_topic: `${
|
|
307
|
+
current_temperature_topic: `${act.Topic}${this.EndingState}`,
|
|
308
308
|
min_temp: target.min ? target.min : 0,
|
|
309
309
|
max_temp: target.max ? target.max : 40,
|
|
310
310
|
modes: ['auto', 'heat', 'off'],
|