From 98d8dd7e65cf4ef1350b4db979dec620263f5bc6 Mon Sep 17 00:00:00 2001 From: linus Date: Fri, 2 Jan 2026 18:06:30 +0100 Subject: [PATCH] Fix missing charging system state --- src/CHANGELOG.md | 6 ++++++ src/const.py | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 71095e2..3b96431 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.1 + +### 🐛 Bug Fixes: + +- Fix missing charging system state `error` #314 + ## v1.13.0 ### 🚀 Features: diff --git a/src/const.py b/src/const.py index 4a5d04e..b4772ba 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.13.0" +VERSION = "v1.13.1" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2" @@ -61,7 +61,8 @@ availability_topic = "volvoAAOS2mqtt/availability" charging_system_states = {"CHARGING": "Charging", "IDLE": "Idle", "FAULT": "Fault", "UNSPECIFIED": "Unspecified", - "DONE": "Done", "SCHEDULED": "Scheduled"} + "DONE": "Done", "SCHEDULED": "Scheduled", "ERROR": "Error", + "DISCHARGING": "Discharging"} charging_connection_states = {"DISCONNECTED": "Disconnected", "UNSPECIFIED": "Unspecified", "FAULT": "Fault", "CONNECTED": "Connected"}