iobroker.lorawan 1.18.16 → 1.18.18

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.18 (2025-11-25)
27
+ * (BenAhrdt) Bugfix limit sitch topic to state_topic
28
+
29
+ ### 1.18.17 (2025-11-25)
30
+ * (BenAhrdt) Bugfix limit switch closed
31
+
26
32
  ### 1.18.16 (2025-11-25)
27
33
  * (BenAhrdt) change cover states into lower case
28
34
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.16",
4
+ "version": "1.18.18",
5
5
  "news": {
6
+ "1.18.18": {
7
+ "en": "Bugfix limit sitch topic to state_topic",
8
+ "de": "Bugfix limit sitch Thema zu state_topic",
9
+ "ru": "Bugfix ограничивает тему ситча state_topic",
10
+ "pt": "Assunto de configuração limite de Bugfix para state_topic",
11
+ "nl": "Bugfix limit sitch topic to state_topic",
12
+ "fr": "Bugfix limit sitch topic to state_topic",
13
+ "it": "Bugfix limit sitch argomento a state_topic",
14
+ "es": "Bugfix límite de sitch tema a state_topic",
15
+ "pl": "Temat limit bugfix do stanu _ topic",
16
+ "uk": "Виправлення ліміту висихання до стану_topic",
17
+ "zh-cn": "错误fix 将 sitch 话题限制为状态_ title"
18
+ },
19
+ "1.18.17": {
20
+ "en": "Bugfix limit switch closed",
21
+ "de": "Bugfix Endschalter geschlossen",
22
+ "ru": "Переключатель Bugfix Limit закрыт",
23
+ "pt": "Interruptor de limite de correção de erros fechado",
24
+ "nl": "Bugfix limietschakelaar gesloten",
25
+ "fr": "Interrupteur limite de bogue fermé",
26
+ "it": "Interruttore di limite Bugfix chiuso",
27
+ "es": "Interruptor de límite de fallo cerrado",
28
+ "pl": "Graniczny wyłącznik Bugfix zamknięty",
29
+ "uk": "Перемикач ліміту попереку",
30
+ "zh-cn": "关闭错误修正限制开关"
31
+ },
6
32
  "1.18.16": {
7
33
  "en": "change cover states into lower case",
8
34
  "de": "änderung der deckelzustände in den unteren fall",
@@ -67,32 +93,6 @@
67
93
  "pl": "Bugfix fx w przypadku liczby",
68
94
  "uk": "Виправлення помилок при кількості",
69
95
  "zh-cn": "如果出现数字, 错误fx"
70
- },
71
- "1.18.11": {
72
- "en": "Bugfix fx for published ids",
73
- "de": "Bugfix fx für veröffentlichte ids",
74
- "ru": "Bugfix fx для опубликованных идентификаторов",
75
- "pt": "Bugfix fx para IDs publicados",
76
- "nl": "Bugfix fx voor gepubliceerde id's",
77
- "fr": "Bugfix fx pour les ids publiés",
78
- "it": "Bugfix fx per ids pubblicati",
79
- "es": "Fx Bugfix para los ids publicados",
80
- "pl": "Bugfix fx dla opublikowanych idów",
81
- "uk": "Bugfix fx для опублікованих ids",
82
- "zh-cn": "已发布 ID 的臭虫fx"
83
- },
84
- "1.18.10": {
85
- "en": "Effects for Lights in common.states",
86
- "de": "Effekte für Lichter gemeinsam. Staaten",
87
- "ru": "Эффекты для общего света. государства",
88
- "pt": "Efeitos para Luzes em comum. estados",
89
- "nl": "Effecten voor Lichten gemeen. staat",
90
- "fr": "Effets pour les lumières en commun. États",
91
- "it": "Effetti per le luci in comune. Stati",
92
- "es": "Efectos para las luces en común. estados",
93
- "pl": "Skutki dla Lights wspólne. stany",
94
- "uk": "Ефекти для вогнів в цілому. Стан",
95
- "zh-cn": "对光的影响是共同的。 状态"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -2706,15 +2706,15 @@ class bridgeClass {
2706
2706
  },
2707
2707
  DiscoveryTopic,
2708
2708
  DiscoveryPayload,
2709
- `${config.CoverIds.openSignal}${this.EndingState}`,
2709
+ `${coverTopic}${this.EndingState}`,
2710
2710
  { cover: true, message: { [openKey]: 'open', [closingKey]: 'closing' } },
2711
2711
  );
2712
2712
  }
2713
2713
 
2714
2714
  // Closed limit switch
2715
2715
  if (config.CoverIds.closedSignal) {
2716
- const closedKey = String(config.CoverOpenSignalTrue);
2717
- const openingKey = String(!config.CoverOpenSignalTrue);
2716
+ const closedKey = String(config.CoverClosedSignalTrue);
2717
+ const openingKey = String(!config.CoverClosedSignalTrue);
2718
2718
  this.assignIdStructure(
2719
2719
  this.PublishedIds,
2720
2720
  config.CoverIds.closedSignal,
@@ -2723,7 +2723,7 @@ class bridgeClass {
2723
2723
  },
2724
2724
  DiscoveryTopic,
2725
2725
  DiscoveryPayload,
2726
- `${config.CoverIds.closedSignal}${this.EndingState}`,
2726
+ `${coverTopic}${this.EndingState}`,
2727
2727
  {
2728
2728
  cover: true,
2729
2729
  message: { [closedKey]: 'closed', [openingKey]: 'opening' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.16",
3
+ "version": "1.18.18",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",