iobroker.lorawan 1.11.3 → 1.11.4

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.11.4 (2025-08-23)
27
+ * (BenAhrdt) set Custom Send payload to upper case
28
+
26
29
  ### 1.11.3 (2025-08-17)
27
30
  * (BenAhrdt) replace german specific chars like ä => ae
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.11.3",
4
+ "version": "1.11.4",
5
5
  "news": {
6
+ "1.11.4": {
7
+ "en": "set Custom Send payload to upper case",
8
+ "de": "set Custom Payload an den oberen Fall senden",
9
+ "ru": "настройка Custom Send payload для верхнего корпуса",
10
+ "pt": "definir a carga de envio personalizada para maiúsculas",
11
+ "nl": "aangepaste lading naar hoofdletters verzenden",
12
+ "fr": "définir la charge utile personnalisée Envoyer à la case supérieure",
13
+ "it": "set Custom Invia carico utile al caso superiore",
14
+ "es": "set Custom Send payload to upper case",
15
+ "pl": "ustawiony Własny Wyślij ładunek do górnej skrzyni",
16
+ "uk": "встановити Користувальницьке відправлення для верхнього корпусу",
17
+ "zh-cn": "设置自定义将有效载荷发送到大写"
18
+ },
6
19
  "1.11.3": {
7
20
  "en": "replace german specific chars like ä => ae",
8
21
  "de": "ä => ae",
@@ -80,19 +93,6 @@
80
93
  "pl": "dodać extSersorTemperatura jednostki \"°C\"",
81
94
  "uk": "додати extSersorTemperature unit \"°C\"",
82
95
  "zh-cn": "添加extSersorTemperature 单位“°C”"
83
- },
84
- "1.10.20": {
85
- "en": "backflip handling limits",
86
- "de": "zurück zur übersicht",
87
- "ru": "ограничения на обработку оборотов",
88
- "pt": "limites de manipulação de retrorrefletores",
89
- "nl": "limieten voor het gebruik van backflip",
90
- "fr": "limites de manipulation de backflip",
91
- "it": "limiti di gestione del backflip",
92
- "es": "límites de manipulación de backflip",
93
- "pl": "limity obsługi wstecznej",
94
- "uk": "лінії обробки застібки",
95
- "zh-cn": "后窗体处理限制"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/main.js CHANGED
@@ -431,7 +431,7 @@ class Lorawan extends utils.Adapter {
431
431
  ];
432
432
  const Statevalues = state.val.split(',');
433
433
  const StateElements = {
434
- PayloadInHex: Statevalues[0],
434
+ PayloadInHex: Statevalues[0].toUpperCase(),
435
435
  Port: Statevalues[1] ? parseInt(Statevalues[1]) : downlinkConfig.port,
436
436
  Confirmed: Statevalues[2]
437
437
  ? Statevalues[2] === 'true'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.11.3",
3
+ "version": "1.11.4",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",