Skip to content

Commit

Permalink
0.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hombach committed Jun 29, 2023
1 parent 056c2e2 commit baa709c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ This adapter uses Sentry libraries to automatically report exceptions and code e
## Changelog
! Note that missing version entries are typically dependency updates for security.

### 0.15.3 (29.06.2023)
* (HombachC) acknowledge settings states after adoption
### 0.15.2 (26.06.2023)
* (HombachC) Changed config screen to ioBroker.admin 5 version
### 0.15.1 (19.06.2023)
Expand Down
28 changes: 14 additions & 14 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"common": {
"name": "go-e-charger",
"version": "0.15.2",
"version": "0.15.3",
"news": {
"0.15.3": {
"en": "acknowledge settings states after adoption",
"de": "Einstellungen werden nach Annahme nun bestätigt",
"ru": "признавать состояния настроек после принятия",
"pt": "reconhecer configurações estados após adoção",
"nl": "erkenning staat na adoptie",
"fr": "reconnaître les paramètres déclarés après adoption",
"it": "riconoscere gli stati delle impostazioni dopo l'adozione",
"es": "reconocer los ajustes estados después de la adopción",
"pl": "po przyjęciu adopcji państwa po adopcji",
"uk": "визначте параметри стану після прийняття",
"zh-cn": "承认收养后的情况"
},
"0.15.2": {
"en": "Changed config screen to ioBroker.admin 5 version",
"de": "Geänderter Bildschirm auf ioBroker. admin 5 version",
Expand Down Expand Up @@ -107,19 +120,6 @@
"uk": "запроваджувати читано-тільки режими, відхилені залежності",
"zh-cn": "倾听的依赖"
},
"0.12.0": {
"en": "optimizing system load\n",
"de": "Optimierung der Systemlast\n",
"ru": "оптимизация нагрузки системы\n",
"pt": "otimização da carga do sistema\n",
"nl": "vertaling:\n",
"fr": "optimisation de la charge du système\n",
"it": "ottimizzare il carico del sistema\n",
"es": "optimización de la carga del sistema\n",
"pl": "optymalizacja\n",
"uk": "оптимізація навантаження системи\n",
"zh-cn": "优化系统载荷\n"
},
"0.11.0": {
"en": "BREAKING: dropped node.js 10 support, bumped dependencies",
"de": "BREAKING: Node.js 10 Unterstützung wurde eingestellt, Abhängigkeiten aktualisiert",
Expand Down
4 changes: 4 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,13 @@ class go_e_charger extends utils.Adapter {
if (state) { // The state was changed
this.log.info(`state ${id} changed: ${state.val} (ack = ${state.ack})`);
MinHomeBatVal = await this.asyncGetStateVal('Settings.Setpoint_HomeBatSoC'); // Get desired battery SoC
this.setStateAsync('Settings.Setpoint_HomeBatSoC', MinHomeBatVal, true);
ChargeNOW = await this.asyncGetStateVal('Settings.ChargeNOW'); // Get charging override trigger
this.setStateAsync('Settings.ChargeNOW', ChargeNOW, true);
ChargeManager = await this.asyncGetStateVal('Settings.ChargeManager'); // Get enable for charge manager
this.setStateAsync('Settings.ChargeManager', ChargeManager, true);
ChargeCurrent = await this.asyncGetStateVal('Settings.ChargeCurrent'); // Get current for charging override
this.setStateAsync('Settings.ChargeCurrent', ChargeCurrent, true);
} else { // The state was deleted
this.log.warn(`state ${id} deleted`);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.go-e-charger",
"version": "0.15.2",
"version": "0.15.3",
"description": "Adapter for reading go-eCharger data",
"author": {
"name": "Hombach",
Expand Down

0 comments on commit baa709c

Please sign in to comment.