iobroker.lorawan 1.14.2 → 1.14.3

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,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.3 (2025-09-11)
27
+ * (BenAhrdt) Change Nameing of Virtual ID for virtual_mode
28
+
26
29
  ### 1.14.2 (2025-09-11)
27
30
  * (BenAhrdt) Bugfix Climate current_temperature topic
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.14.2",
4
+ "version": "1.14.3",
5
5
  "news": {
6
+ "1.14.3": {
7
+ "en": "Change naming of virtual ID for virtual_mode",
8
+ "de": "Änderung der Benennung der virtuellen ID für virtual_mode",
9
+ "ru": "Изменено именование виртуального ID для virtual_mode",
10
+ "pt": "Alterar a nomeação do ID virtual para virtual_mode",
11
+ "nl": "Wijzig de naamgeving van virtueel ID voor virtual_mode",
12
+ "fr": "Modifier la dénomination de l'ID virtuel pour virtual_mode",
13
+ "it": "Modifica la denominazione dell'ID virtuale per virtual_mode",
14
+ "es": "Cambiar la denominación del ID virtual para virtual_mode",
15
+ "pl": "Zmiana nazewnictwa identyfikatora wirtualnego dla virtual_mode",
16
+ "uk": "Зміна найменування віртуального ID для virtual_mode",
17
+ "zh-cn": "更改 virtual_mode 的虚拟 ID 命名"
18
+ },
6
19
  "1.14.2": {
7
20
  "en": "Bugfix climate current_temperature topic",
8
21
  "de": "Bugfix climate current_temperature Topic",
@@ -80,19 +93,6 @@
80
93
  "pl": "Ulepszono obsługę stanów i obsługę długości klucza",
81
94
  "uk": "Покращено обробку станів та обробку довжини ключа",
82
95
  "zh-cn": "改进状态处理并改进密钥长度处理"
83
- },
84
- "1.13.11": {
85
- "en": "Bugfix selection of states and state_class",
86
- "de": "Bugfix Auswahl von States und state_class",
87
- "ru": "Исправлена ошибка выбора состояний и state_class",
88
- "pt": "Correção de bug na seleção de estados e state_class",
89
- "nl": "Bugfix selectie van states en state_class",
90
- "fr": "Correction de bug sur la sélection des états et state_class",
91
- "it": "Correzione bug nella selezione di stati e state_class",
92
- "es": "Corrección de error en la selección de estados y state_class",
93
- "pl": "Poprawka błędu przy wyborze stanów i state_class",
94
- "uk": "Виправлення помилки вибору станів та state_class",
95
- "zh-cn": "修复状态和 state_class 的选择错误"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -447,7 +447,7 @@ class bridgeClass {
447
447
  climateIds.target = `${config.TargetApplication}.devices.${config.TargetDevice}.${config.TargetFolder}.${config.TargetState}`;
448
448
  climateIds.act = `${config.ActApplication}.devices.${config.ActDevice}.${config.ActFolder}.${config.ActState}`;
449
449
  if (config.ModeApplication === 'NotPresent') {
450
- climateIds.mode = `${climateIds.target}${this.EndingVirtualMode}`;
450
+ climateIds.mode = `${config.TargetApplication}.devices.${config.TargetDevice}.${config.TargetFolder}${this.EndingVirtualMode}`;
451
451
  } else {
452
452
  climateIds.mode = `${config.ModeApplication}.devices.${config.ModeDevice}.${config.ModeFolder}.${config.ModeState}`;
453
453
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",