Fix unknown state for icon update

This commit is contained in:
Dielee
2023-12-14 08:52:53 +01:00
parent 3166a1c6ab
commit 8326ed3c88
4 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
## v1.8.21
### 🐛 Bug Fixes:
- Try to fix addon build #146
## v1.8.20 ## v1.8.20
### 🐛 Bug Fixes: ### 🐛 Bug Fixes:
+1 -1
View File
@@ -11,7 +11,7 @@ WORKDIR /volvoAAOS2mqtt
RUN wget --no-cache https://raw.githubusercontent.com/Dielee/volvo2mqtt/main/requirements.txt RUN wget --no-cache https://raw.githubusercontent.com/Dielee/volvo2mqtt/main/requirements.txt
# install dependencies # install dependencies
RUN pip install -r requirements.txt RUN pip install -r requirements.txt --break-system-packages
# copy the content of the local src directory to the working directory # copy the content of the local src directory to the working directory
COPY / . COPY / .
+1 -1
View File
@@ -1,6 +1,6 @@
name: "Volvo2Mqtt" name: "Volvo2Mqtt"
description: "Volvo AAOS MQTT bridge" description: "Volvo AAOS MQTT bridge"
version: "1.8.20" version: "1.8.21"
slug: "volvo2mqtt" slug: "volvo2mqtt"
init: false init: false
url: "https://github.com/Dielee/volvo2mqtt" url: "https://github.com/Dielee/volvo2mqtt"
+1 -1
View File
@@ -1,6 +1,6 @@
from config import settings from config import settings
VERSION = "v1.8.20" VERSION = "v1.8.21"
OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles" VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles"