iobroker.lorawan 1.18.14 → 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,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.18.16 (2025-11-25)
27
+ * (BenAhrdt) change cover states into lower case
28
+
29
+ ### 1.18.15 (2025-11-25)
30
+ * (BenAhrdt) add '#' to normalized String
31
+
26
32
  ### 1.18.14 (2025-11-25)
27
33
  * (BenAhrdt) add Cover to special devices
28
34
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.14",
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
+ },
19
+ "1.18.15": {
20
+ "en": "add '#' to normalized String",
21
+ "de": "'#' zu normalisieren String hinzufügen",
22
+ "ru": "добавить «#» в нормализованную строку",
23
+ "pt": "adicionar '#' à string normalizada",
24
+ "nl": "'#' toevoegen aan genormaliseerde tekenreeks",
25
+ "fr": "ajouter '#' à la chaîne normalisée",
26
+ "it": "aggiungere '#' a normalized String",
27
+ "es": "añadir '#' a la cuerda normalizada",
28
+ "pl": "dodaj '#' do znormalizowanego String",
29
+ "uk": "додати '#' для нормалізації String",
30
+ "zh-cn": "添加“ # ” 到正态字符串"
31
+ },
6
32
  "1.18.14": {
7
33
  "en": "add Cover to special devices",
8
34
  "de": "cover für spezielle Geräte hinzufügen",
@@ -67,32 +93,6 @@
67
93
  "pl": "Skutki dla Lights wspólne. stany",
68
94
  "uk": "Ефекти для вогнів в цілому. Стан",
69
95
  "zh-cn": "对光的影响是共同的。 状态"
70
- },
71
- "1.18.9": {
72
- "en": "Automactic Scale of light brightness in case of common.max in state",
73
- "de": "Automaktische Skala der Lichthelligkeit bei Common.max im Zustand",
74
- "ru": "Автоматическая шкала яркости света в случае common.max в состоянии",
75
- "pt": "Escala automática de brilho de luz em caso de comum.max em estado",
76
- "nl": "Automactische schaal van licht helderheid in geval van gemeenschappelijk.max in staat",
77
- "fr": "Échelle automatique de luminosité de la lumière dans le cas de common.max à l'état",
78
- "it": "Scala automatica della luminosità della luce in caso di common.max nello stato",
79
- "es": "Escala automáctica de brillo de luz en caso de común.max en estado",
80
- "pl": "Automatyczne skalowanie jasności światła w przypadku common.max w stanie",
81
- "uk": "Автомактична шкала легкої яскравості при загальній.max в стані",
82
- "zh-cn": "状态下常见.max时的光亮度自动缩放"
83
- },
84
- "1.18.8": {
85
- "en": "Bugfix: no notification in case of no bridge is used",
86
- "de": "Bugfix: keine Benachrichtigung bei Nutzung einer Brücke",
87
- "ru": "Bugfix: отсутствие уведомления в случае отсутствия моста",
88
- "pt": "Correção de Bug: não é usada nenhuma notificação em caso de não haver ponte",
89
- "nl": "Bugfix: geen melding in geval van geen brug wordt gebruikt",
90
- "fr": "Bugfix: aucune notification en cas d'absence de pont n'est utilisée",
91
- "it": "Bugfix: nessuna notifica in caso di utilizzo di nessun ponte",
92
- "es": "Bugfix: no se utiliza notificación en caso de no puente",
93
- "pl": "Bugfix: brak powiadomienia w przypadku braku mostu",
94
- "uk": "Виправлення помилок: відсутність сповіщення при відсутності місту",
95
- "zh-cn": "Bugfix: 在没有桥时没有使用通知"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -1544,7 +1544,8 @@ class bridgeClass {
1544
1544
  .replace(/ /g, '_')
1545
1545
  .replace(/[()]/g, '_')
1546
1546
  .replace(/[[\]]/g, '_')
1547
- .replace(/[{}]/g, '_');
1547
+ .replace(/[{}]/g, '_')
1548
+ .replace(/#/g, '_');
1548
1549
  } catch (error) {
1549
1550
  this.adapter.log.error(`error at ${activeFunction}: ${error}`);
1550
1551
  }
@@ -2706,7 +2707,7 @@ class bridgeClass {
2706
2707
  DiscoveryTopic,
2707
2708
  DiscoveryPayload,
2708
2709
  `${config.CoverIds.openSignal}${this.EndingState}`,
2709
- { cover: true, message: { [openKey]: 'OPEN', [closingKey]: 'CLOSING' } },
2710
+ { cover: true, message: { [openKey]: 'open', [closingKey]: 'closing' } },
2710
2711
  );
2711
2712
  }
2712
2713
 
@@ -2725,7 +2726,7 @@ class bridgeClass {
2725
2726
  `${config.CoverIds.closedSignal}${this.EndingState}`,
2726
2727
  {
2727
2728
  cover: true,
2728
- message: { [closedKey]: 'CLOSED', [openingKey]: 'OPENING' },
2729
+ message: { [closedKey]: 'closed', [openingKey]: 'opening' },
2729
2730
  },
2730
2731
  );
2731
2732
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.14",
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",