diff --git a/README.md b/README.md index e72d188..fde803b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ All devices which can be controlled via EWPE Smart app should be supported, incl **This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0. ## Changelog -### 0.0.12 (2024-04-15) +### 0.0.13 (2024-04-15) - First version of the adapter ## License diff --git a/io-package.json b/io-package.json index cb5e628..0a98ae5 100644 --- a/io-package.json +++ b/io-package.json @@ -1,9 +1,9 @@ { "common": { "name": "gree-hvac", - "version": "0.0.12", + "version": "0.0.13", "news": { - "0.0.12": { + "0.0.13": { "en": "initial release", "de": "Erstveröffentlichung", "ru": "Начальная версия", diff --git a/main.js b/main.js index 1e674e4..08e3752 100644 --- a/main.js +++ b/main.js @@ -512,7 +512,7 @@ class GreeHvac extends utils.Adapter { const property = propertiesMap[j]; const state = (await this.getStateAsync(`${deviceItem.id}.${property.name}`)).val; deviceInfo[property.name] = state; - } catch { } + } catch { }// eslint-disable-line no-empty } const aliveState = (await this.getStateAsync(`${deviceItem.id}.alive`)).val; deviceInfo.alive = aliveState; diff --git a/package.json b/package.json index a5f6544..3e74638 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iobroker.gree-hvac", - "version": "0.0.12", + "version": "0.0.13", "description": "Adapter for Gree and C&H conditioners", "author": { "name": "Serhiy Krasovskyy",