iobroker.lorawan 1.2.2 → 1.2.3

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.2.3 (2024-06-26)
27
+ * (BenAhrdt) Bugfix offlinenotification (calculation of diffenerce)
28
+
26
29
  ### 1.2.2 (2024-06-25)
27
30
  * (BenAhrdt) Bugfix inf generate Deviceinfo at startup for chirpstack
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.2.2",
4
+ "version": "1.2.3",
5
5
  "news": {
6
+ "1.2.3": {
7
+ "en": "Bugfix offlinenotification (calculation of diffenerce)",
8
+ "de": "Bugfix Offlinenotification (Berechnung von Diffenerce)",
9
+ "ru": "Обратное обозначение (расчет диффенерции)",
10
+ "pt": "Bugfix notificação off-line (cálculo de diffenerce)",
11
+ "nl": "Bugfix offline aanmelding (berekening van diffenerce)",
12
+ "fr": "Bugfix non-offlinenotification (calcul de la différence)",
13
+ "it": "Bugfix notificazione offline (calcolo di diffenerce)",
14
+ "es": "Bugfix sin conexión (calculación de diffenerce)",
15
+ "pl": "Bugfix offlinenotification (obliczenie dyfferenerce)",
16
+ "uk": "Виправлення помилок (облік дифеенції)",
17
+ "zh-cn": "Bugfix 离线通知( diffenerce 的计算)"
18
+ },
6
19
  "1.2.2": {
7
20
  "en": "Bugfix inf generate Deviceinfo at startup for chirpstack",
8
21
  "de": "Bugfix inf erzeugen Deviceinfo beim Start für chirpstack",
@@ -80,19 +93,6 @@
80
93
  "pl": "usuń alarm debugowania logowanie",
81
94
  "uk": "видалити debug попередження",
82
95
  "zh-cn": "删除调试警告日志"
83
- },
84
- "1.0.8": {
85
- "en": "set keepalive value to 0 => deactivate automatic reconnection",
86
- "de": "festhaltenswert auf 0 gesetzt => deaktivieren der automatischen wiederverbindung",
87
- "ru": "установка постоянного значения 0 => деактивировать автоматическое соединение",
88
- "pt": "set keepalive value to 0 => desativar a reconexão automática",
89
- "nl": "stel de bewaarwaarde in op 0 => de automatische herverbinding deactiveren",
90
- "fr": "définir la valeur de conservation à 0 => désactiver la reconnexion automatique",
91
- "it": "imposta il valore manalive a 0 => disattivare la riconnessione automatica",
92
- "es": "ajuste del valor de mantenimiento a 0 = prenda desactivar la reconexión automática",
93
- "pl": "ustawić wartość keeplive na 0 = > dezaktywować automatyczne ponowne połączenie",
94
- "uk": "встановити безпечне значення 0 => деактивувати автоматичне відключення",
95
- "zh-cn": "将保存值设置为 0 qq 自动重联"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -49,7 +49,7 @@ class messagehandlerClass {
49
49
  if(adapterObject._id.endsWith(`${this.directoryhandler.reachableSubfolders.uplinkRaw}.json`)){
50
50
  const uplinkState = await this.adapter.getStateAsync(adapterObject._id);
51
51
  if(uplinkState){
52
- const difference = Date.now(); - uplinkState.ts;
52
+ const difference = Date.now() - uplinkState.ts;
53
53
  // Check for timedifference
54
54
  if(difference >= this.offlinetimeMax){
55
55
  const deviceobjectId = adapterObject._id.substring(0,adapterObject._id.indexOf(".uplink"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",