iobroker.lorawan 1.18.12 → 1.18.13

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.18.13 (2025-11-23)
27
+ * (BenAhrdt) Bugfix: wrong subscribtion of fx ids
28
+
26
29
  ### 1.18.12 (2025-11-23)
27
30
  * (BenAhrdt) Bugfix fx in case of number
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.12",
4
+ "version": "1.18.13",
5
5
  "news": {
6
+ "1.18.13": {
7
+ "en": "Bugfix: wrong subscribtion of fx ids",
8
+ "de": "Bugfix: falsche Anmeldung von fx ids",
9
+ "ru": "Bugfix: неправильная подписка на fx ids",
10
+ "pt": "Correção de Bugfix: subscrita errada de fx ids",
11
+ "nl": "Bugfix: verkeerde subscriptie van fx ids",
12
+ "fr": "Bugfix : mauvaise subscribtion des ids fx",
13
+ "it": "Bugfix: sottoscrizione sbagliata di fx ids",
14
+ "es": "Bugfix: la subscripción incorrecta de los ids de fx",
15
+ "pl": "Bugfix: błędna subskrypcja fix ids",
16
+ "uk": "Помилки: неправильне підсобнення попелиці",
17
+ "zh-cn": "错误fix: fx ID 的子缩写错误"
18
+ },
6
19
  "1.18.12": {
7
20
  "en": "Bugfix fx in case of number",
8
21
  "de": "Bugfix fx bei Anzahl",
@@ -80,19 +93,6 @@
80
93
  "pl": "Dodaj światło do możliwych urządzeń specjalnych",
81
94
  "uk": "Додати світло для можливих спеціальних пристроїв",
82
95
  "zh-cn": "在可能的特殊设备中添加光"
83
- },
84
- "1.18.6": {
85
- "en": "set role color to entity_category config",
86
- "de": "rollenfarbe auf entity_category config einstellen",
87
- "ru": "установить цвет ролей в конфигурации entity_category",
88
- "pt": "definir a cor do papel para a configuração entity_category",
89
- "nl": "rolkleur instellen op entiteit_categorie configuratie",
90
- "fr": "définir la couleur du rôle à la config entity_category",
91
- "it": "impostare colore ruolo a enti_category config",
92
- "es": "definir el papel color a entity_category config",
93
- "pl": "ustaw kolor ról do konfiguracji podmiotu _ kategorii",
94
- "uk": "встановити колір ролі на сутність_category config",
95
- "zh-cn": "设置角色颜色到实体_ 类别配置"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -2344,7 +2344,7 @@ class bridgeClass {
2344
2344
  await this.adapter.subscribeForeignStatesAsync(config.LightIds.color);
2345
2345
  }
2346
2346
  if (config.LightEffects) {
2347
- await this.adapter.subscribeForeignStatesAsync(config.LightIds.effect);
2347
+ await this.adapter.subscribeForeignStatesAsync(config.LightIds.effects);
2348
2348
  }
2349
2349
  }, 1000);
2350
2350
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.12",
3
+ "version": "1.18.13",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",