Skip to content

Commit

Permalink
chore: release v3.0.4
Browse files Browse the repository at this point in the history
* (arteck) typo
  • Loading branch information
arteck committed Oct 3, 2024
1 parent d46c218 commit 8c8151c
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 19 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Adapter to control Hyundai or Kia vehicle (until 2023)


## Changelog
### 3.0.4 (2024-10-03)
* (arteck) typo

### 3.0.3 (2024-10-02)
* (arteck) add city to position text

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": "bluelink",
"version": "3.0.3",
"version": "3.0.4",
"news": {
"3.0.4": {
"en": "typo",
"de": "typo",
"ru": "typo",
"pt": "tipo:",
"nl": "type",
"fr": "typo",
"it": "tipo",
"es": "typo",
"pl": "typo",
"uk": "типи",
"zh-cn": "类型"
},
"3.0.3": {
"en": "add city to position text",
"de": "stadt hinzufügen zum positionstext",
Expand Down Expand Up @@ -80,19 +93,6 @@
"pl": "dodaj adres jako tekst używając openstreetmap",
"uk": "додати адресу як текст за допомогою openstreetmap",
"zh-cn": "使用 opentreetmap 添加地址为文本"
},
"2.3.9": {
"en": "add ccs2 car status",
"de": "ccs2 autostatus hinzufügen",
"ru": "добавить статус автомобиля ccs2",
"pt": "adicionar status do carro ccs2",
"nl": "ccs2 autostatus toevoegen",
"fr": "ajouter ccs2 statut de voiture",
"it": "aggiungere ccs2 auto stato",
"es": "añadir ccs2 estado del coche",
"pl": "dodaj status samochodu ccs2",
"uk": "додати стан автомобіля ccs2",
"zh-cn": "添加 ccs2 车位"
}
},
"title": "Hyundai (Bluelink) / Kia (UVO)",
Expand Down
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ class Bluelink extends utils.Adapter {
});
} else {
if (newStatus.vehicleStatus.hasOwnProperty('evStatus')) {
if (newStatus.vehicleStatus.evStatus.reservChargeInfos.hasOwnProperty('targetSOClist')) {
if (newStatus.vehicleStatus.evStatus.reservChargeInfos.hasOwnProperty('targetSOClist[0]')) {
if (newStatus.vehicleStatus.evStatus.reservChargeInfos.targetSOClist[0].plugType == 1) {
//Slow = 1 -> Index 0 ist slow
slow_charging = newStatus.vehicleStatus.evStatus.reservChargeInfos.targetSOClist[0].targetSOClevel;
Expand Down Expand Up @@ -613,7 +613,7 @@ class Bluelink extends utils.Adapter {
ack: true,
});
}
}
}

//Nur für Elektro Fahrzeuge - Battery
await this.setStateAsync(vin + '.vehicleStatus.dte', {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.bluelink",
"version": "3.0.3",
"version": "3.0.4",
"description": "Adapter to control Hyundai or Kia vehicle",
"author": {
"name": "Newan",
Expand Down

0 comments on commit 8c8151c

Please sign in to comment.