iobroker.lorawan 1.18.54 → 1.18.55

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.55 (2025-12-29)
27
+ * (BenAhrdt) bugfix folderinclusion
28
+
26
29
  ### 1.18.54 (2025-12-29)
27
30
  * (BenAhrdt) add '.' to folders in config selection
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.54",
4
+ "version": "1.18.55",
5
5
  "news": {
6
+ "1.18.55": {
7
+ "en": "bugfix folderinclusion",
8
+ "de": "bugfix ordnerinclusion",
9
+ "ru": "bugfix включение папок",
10
+ "pt": "inclusão de pastas de correção de erros",
11
+ "nl": "bugfix-map-integratie",
12
+ "fr": "bugfix dossierinclusion",
13
+ "it": "bugfix folderinclusione",
14
+ "es": "carpeta bugfixinclusion",
15
+ "pl": "włączenie folderu bugfix",
16
+ "uk": "папка прикусу",
17
+ "zh-cn": "包含错误文件夹"
18
+ },
6
19
  "1.18.54": {
7
20
  "en": "add '.' to folders in config selection",
8
21
  "de": "fügen sie '.' in ordner in config auswahl",
@@ -80,19 +93,6 @@
80
93
  "pl": "Czytaj i wysyłaj zawsze wszystkie atrybuty światła",
81
94
  "uk": "Читайте і надсилайте завжди всі атрибути світла",
82
95
  "zh-cn": "读取并发送所有光属性"
83
- },
84
- "1.18.48": {
85
- "en": "Set the selection to usedNames (application and device)",
86
- "de": "Setzen Sie die Auswahl auf gebrauchtNamen (Anwendung und Gerät)",
87
- "ru": "Установите выбор используемых имен (приложения и устройства)",
88
- "pt": "Define a seleção para nomes usados (aplicação e dispositivo)",
89
- "nl": "De selectie instellen op gebruikte Namen (toepassing en apparaat)",
90
- "fr": "Définissez la sélection aux noms utilisés (application et périphérique)",
91
- "it": "Impostare la selezione per i nomi utilizzati (applicazione e dispositivo)",
92
- "es": "Establecer la selección para utilizarNames (aplicación y dispositivo)",
93
- "pl": "Ustaw wybór na używane Nazwy (aplikacja i urządzenie)",
94
- "uk": "Налаштуйте вибір для використанняНазви (застосування та пристрій)",
95
- "zh-cn": "将选中区域设定为使用的名称( 应用程序和设备)"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -993,7 +993,9 @@ class bridgeClass {
993
993
  (changeInfo.applicationId === config.Application || config.Application === '*') &&
994
994
  (changeInfo.deviceEUI === config.Device || config.Device === '*') &&
995
995
  (id.includes(`.${config.Folder}.`) || config.Folder === '*') &&
996
- (id.includes(`.decoded.${config.State}`) || config.State === '*')
996
+ (config.State === '*' ||
997
+ (config.State.endsWith('.') && id.includes(`.decoded.${config.State}`)) ||
998
+ (!config.State.endsWith('.') && id.endsWith(`.decoded.${config.State}`)))
997
999
  ) {
998
1000
  Bridgestate.discover = !config.exclude;
999
1001
  Bridgestate.publish = true;
@@ -1065,7 +1067,9 @@ class bridgeClass {
1065
1067
  (changeInfo.applicationId === config.Application || config.Application === '*') &&
1066
1068
  (changeInfo.deviceEUI === config.Device || config.Device === '*') &&
1067
1069
  (id.includes(`.${config.Folder}.`) || config.Folder === '*') &&
1068
- (id.includes(`.control.${config.State}`) || config.State === '*')
1070
+ (config.State === '*' ||
1071
+ (config.State.endsWith('.') && id.includes(`.control.${config.State}`)) ||
1072
+ (!config.State.endsWith('.') && id.endsWith(`.control.${config.State}`)))
1069
1073
  ) {
1070
1074
  Bridgestate.discover = !config.exclude;
1071
1075
  Bridgestate.publish = config.publish;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.54",
3
+ "version": "1.18.55",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",