iobroker.lorawan 1.18.15 → 1.18.16

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.16 (2025-11-25)
27
+ * (BenAhrdt) change cover states into lower case
28
+
26
29
  ### 1.18.15 (2025-11-25)
27
30
  * (BenAhrdt) add '#' to normalized String
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.15",
4
+ "version": "1.18.16",
5
5
  "news": {
6
+ "1.18.16": {
7
+ "en": "change cover states into lower case",
8
+ "de": "änderung der deckelzustände in den unteren fall",
9
+ "ru": "изменение состояния покрытия в нижнем регистре",
10
+ "pt": "mudar os estados de cobertura em minúsculas",
11
+ "nl": "wijzigen dekking staten in kleine geval",
12
+ "fr": "changement des états de couverture en minuscules",
13
+ "it": "cambiare gli stati di copertura in caso più basso",
14
+ "es": "cambiar los estados de cobertura en caso inferior",
15
+ "pl": "zmiana stanu pokrycia na niższy przypadek",
16
+ "uk": "змінити обкладинки станів в нижній випадок",
17
+ "zh-cn": "更改覆盖状态为小写"
18
+ },
6
19
  "1.18.15": {
7
20
  "en": "add '#' to normalized String",
8
21
  "de": "'#' zu normalisieren String hinzufügen",
@@ -80,19 +93,6 @@
80
93
  "pl": "Skutki dla Lights wspólne. stany",
81
94
  "uk": "Ефекти для вогнів в цілому. Стан",
82
95
  "zh-cn": "对光的影响是共同的。 状态"
83
- },
84
- "1.18.9": {
85
- "en": "Automactic Scale of light brightness in case of common.max in state",
86
- "de": "Automaktische Skala der Lichthelligkeit bei Common.max im Zustand",
87
- "ru": "Автоматическая шкала яркости света в случае common.max в состоянии",
88
- "pt": "Escala automática de brilho de luz em caso de comum.max em estado",
89
- "nl": "Automactische schaal van licht helderheid in geval van gemeenschappelijk.max in staat",
90
- "fr": "Échelle automatique de luminosité de la lumière dans le cas de common.max à l'état",
91
- "it": "Scala automatica della luminosità della luce in caso di common.max nello stato",
92
- "es": "Escala automáctica de brillo de luz en caso de común.max en estado",
93
- "pl": "Automatyczne skalowanie jasności światła w przypadku common.max w stanie",
94
- "uk": "Автомактична шкала легкої яскравості при загальній.max в стані",
95
- "zh-cn": "状态下常见.max时的光亮度自动缩放"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -2707,7 +2707,7 @@ class bridgeClass {
2707
2707
  DiscoveryTopic,
2708
2708
  DiscoveryPayload,
2709
2709
  `${config.CoverIds.openSignal}${this.EndingState}`,
2710
- { cover: true, message: { [openKey]: 'OPEN', [closingKey]: 'CLOSING' } },
2710
+ { cover: true, message: { [openKey]: 'open', [closingKey]: 'closing' } },
2711
2711
  );
2712
2712
  }
2713
2713
 
@@ -2726,7 +2726,7 @@ class bridgeClass {
2726
2726
  `${config.CoverIds.closedSignal}${this.EndingState}`,
2727
2727
  {
2728
2728
  cover: true,
2729
- message: { [closedKey]: 'CLOSED', [openingKey]: 'OPENING' },
2729
+ message: { [closedKey]: 'closed', [openingKey]: 'opening' },
2730
2730
  },
2731
2731
  );
2732
2732
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.15",
3
+ "version": "1.18.16",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",