iobroker.lorawan 1.21.31 → 1.22.0

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
@@ -24,6 +24,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
24
24
  Placeholder for the next version (at the beginning of the line):
25
25
  ### **WORK IN PROGRESS**
26
26
  -->
27
+ ### 1.22.0 (2026-04-01)
28
+ * (BenAhrdt) new Design in device Manager Cards
29
+
27
30
  ### 1.21.31 (2026-04-01)
28
31
  * (BenAhrdt) Display more Infos and colors in Cards
29
32
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.21.31",
4
+ "version": "1.22.0",
5
5
  "news": {
6
+ "1.22.0": {
7
+ "en": "new Design in device Manager Cards",
8
+ "de": "neues Design in Gerätemanagerkarten",
9
+ "ru": "новый дизайн в картах диспетчера устройств",
10
+ "pt": "novo design em cartões gerenciadores de dispositivos",
11
+ "nl": "nieuw ontwerp in apparaatbeheerkaarten",
12
+ "fr": "nouvelle conception dans les cartes de gestionnaire d'appareils",
13
+ "it": "nuovo design nelle schede di gestione dei dispositivi",
14
+ "es": "nuevo diseño en tarjetas de gestión de dispositivos",
15
+ "pl": "nowy projekt w urządzeniu karty menedżer",
16
+ "uk": "новий дизайн в управлінні пристроями Картки",
17
+ "zh-cn": "设备管理卡中的新设计"
18
+ },
6
19
  "1.21.31": {
7
20
  "en": "Display more Infos and colors in Cards",
8
21
  "de": "Mehr Infos und Farben in Karten anzeigen",
@@ -80,19 +93,6 @@
80
93
  "pl": "dodaj airquilty dla urządzeń tolob\ndodać funkcjonalność z rodzimej karty",
81
94
  "uk": "додати повітряну опалубку для пристроїв\nдодати функціональність на рідній карті",
82
95
  "zh-cn": "添加 ToIob 设备的空平\n从本地卡中添加功能"
83
- },
84
- "1.21.25": {
85
- "en": "add prelabel to some roles for card",
86
- "de": "fügen sie prelabel zu einigen rollen für karte hinzu",
87
- "ru": "добавить предисловие к некоторым ролям для карты",
88
- "pt": "adicionar o rótulo prévio a algumas funções do cartão",
89
- "nl": "prelabel toevoegen aan een aantal rollen voor kaart",
90
- "fr": "ajouter le prélabel à certains rôles pour la carte",
91
- "it": "aggiungere prelabel ad alcuni ruoli per carta",
92
- "es": "añadir prelabel a algunos roles para la tarjeta",
93
- "pl": "dodaj preetykietę do niektórych ról dla karty",
94
- "uk": "додати до деяких ролей для картки",
95
- "zh-cn": "为一些牌角色添加预标签"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -34,8 +34,8 @@ class bridgeDevicesClass {
34
34
  manufacturer:
35
35
  deviceValue.discovery[0].from === 'lorawanDevices'
36
36
  ? 'LoRaWAN-Bridge'
37
- : deviceValue.discovery[0].from === 'LoRaWAN-Foreign'
38
- ? 'primary'
37
+ : deviceValue.discovery[0].from === 'foreignDevices'
38
+ ? 'LoRaWAN-Foreign'
39
39
  : 'LoRaWAN-Info',
40
40
  model: undefined,
41
41
  status: await this.getStatus(deviceValue),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.21.31",
3
+ "version": "1.22.0",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",
@@ -41,7 +41,7 @@
41
41
  "@iobroker/eslint-config": "^2.2.0",
42
42
  "@iobroker/testing": "^5.2.2",
43
43
  "@tsconfig/node20": "^20.1.8",
44
- "@types/lodash": "^4.17.21",
44
+ "@types/lodash": "^4.17.24",
45
45
  "@types/node": "^25.0.3",
46
46
  "typescript": "~5.9.3"
47
47
  },