Socket
Socket
Sign inDemoInstall

iobroker.fronius-wattpilot

Package Overview
Dependencies
8
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.2.0 to 4.2.1

27

io-package.json
{
"common": {
"name": "fronius-wattpilot",
"version": "4.2.0",
"version": "4.2.1",
"news": {
"4.2.1": {
"en": "Fixed bug in the all values mode / parser",
"de": "Fehler behoben in allen Werten Modus / Parser",
"ru": "Исправлена ошибка в режиме всех значений / parser",
"pt": "Corrigido o erro no modo de todos os valores / parser",
"nl": "Gerepareerde insect in alle waarden gemoduseerd/ parser",
"fr": "Correction de bug dans le mode toutes les valeurs / parser",
"it": "Corretto bug nella modalità tutti i valori / parser",
"es": "Error fijo en el modo de todos los valores / parser",
"pl": "Fixed bug w trybie wszystkich wartości / parser",
"uk": "Виправлена помилка в всіх значеннях режим / parser",
"zh-cn": "在所有价值观模式中都配有泡沫。"
},
"4.2.0": {

@@ -83,14 +96,2 @@ "en": "Some QoL improvements",

"zh-cn": "对一揽子计划的小改动。 json和碘。 json"
},
"3.2.4": {
"en": "Fiexed cool down timer for normal values",
"de": "Fiexed kühlen Timer für Normalwerte",
"ru": "Fiexed прохладный таймер для нормальных значений",
"pt": "Temporizador de arrefecimento apertado para valores normais",
"nl": "Verkoelde klokkenluider voor normale waarden",
"fr": "Temporaire frigorifique pour valeurs normales",
"it": "Timer di raffreddamento a fessura per valori normali",
"es": "Temporizador ajustado para valores normales",
"pl": "50 razy chłodził czaszkę dla wartości normalnych",
"zh-cn": "正常价值的冷冻时间"
}

@@ -97,0 +98,0 @@ },

@@ -771,6 +771,8 @@ "use strict";

timeout[keysToCreate] = Date.now();
if (dataToParse2["status"][keysToCreate].toString().includes(",") || dataToParse2["status"][keysToCreate].toString().includes("[") || dataToParse2["status"][keysToCreate].toString().includes("{")) {
await adapter.setStateAsync(keysToCreate, { val: JSON.stringify(dataToParse2["status"][keysToCreate]).toString(), ack: true });
} else {
await adapter.setStateAsync(keysToCreate, { val: dataToParse2["status"][keysToCreate], ack: true });
if (dataToParse2["status"][keysToCreate] !== null) {
if (dataToParse2["status"][keysToCreate].toString().includes(",") || dataToParse2["status"][keysToCreate].toString().includes("[") || dataToParse2["status"][keysToCreate].toString().includes("{")) {
await adapter.setStateAsync(keysToCreate, { val: JSON.stringify(dataToParse2["status"][keysToCreate]).toString(), ack: true });
} else {
await adapter.setStateAsync(keysToCreate, { val: dataToParse2["status"][keysToCreate], ack: true });
}
}

@@ -777,0 +779,0 @@ }

@@ -6,3 +6,3 @@ {

"name": "iobroker.fronius-wattpilot",
"version": "4.2.0",
"version": "4.2.1",
"description": "fronius-wattpilot",

@@ -9,0 +9,0 @@ "author": {

@@ -73,2 +73,3 @@ ![Logo](admin/fronius-wattpilot.png)

- [tim2zg](https://github.com/tim2zg)
- [derHaubi](https://github.com/derHaubi)

@@ -80,2 +81,5 @@ ### Changelog

-->
### 4.2.1 (2023-01-05)
- Fixed bug in the all values mode / parser
### 4.2.0 (2023-01-01)

@@ -82,0 +86,0 @@ - Some QoL improvements

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc