iobroker.lorawan 1.18.16 → 1.18.17

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.17 (2025-11-25)
27
+ * (BenAhrdt) Bugfix limit switch closed
28
+
26
29
  ### 1.18.16 (2025-11-25)
27
30
  * (BenAhrdt) change cover states into lower case
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.16",
4
+ "version": "1.18.17",
5
5
  "news": {
6
+ "1.18.17": {
7
+ "en": "Bugfix limit switch closed",
8
+ "de": "Bugfix Endschalter geschlossen",
9
+ "ru": "Переключатель Bugfix Limit закрыт",
10
+ "pt": "Interruptor de limite de correção de erros fechado",
11
+ "nl": "Bugfix limietschakelaar gesloten",
12
+ "fr": "Interrupteur limite de bogue fermé",
13
+ "it": "Interruttore di limite Bugfix chiuso",
14
+ "es": "Interruptor de límite de fallo cerrado",
15
+ "pl": "Graniczny wyłącznik Bugfix zamknięty",
16
+ "uk": "Перемикач ліміту попереку",
17
+ "zh-cn": "关闭错误修正限制开关"
18
+ },
6
19
  "1.18.16": {
7
20
  "en": "change cover states into lower case",
8
21
  "de": "änderung der deckelzustände in den unteren fall",
@@ -80,19 +93,6 @@
80
93
  "pl": "Bugfix fx dla opublikowanych idów",
81
94
  "uk": "Bugfix fx для опублікованих ids",
82
95
  "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": {
@@ -2713,8 +2713,8 @@ class bridgeClass {
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.16",
3
+ "version": "1.18.17",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",