diff --git a/google_assistant/CHANGELOG.md b/google_assistant/CHANGELOG.md index 6e78532..930f5cf 100644 --- a/google_assistant/CHANGELOG.md +++ b/google_assistant/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.1 +- Bugfix OAuth webinterface + ## 1.0 - Update Google Assistant SDK 0.4.4 - Update Google Assistant Library 0.1.1 diff --git a/google_assistant/Dockerfile b/google_assistant/Dockerfile index 9f1403b..2143fa5 100644 --- a/google_assistant/Dockerfile +++ b/google_assistant/Dockerfile @@ -3,8 +3,8 @@ FROM $BUILD_FROM # Install packages RUN apt-get update \ - && apt-get install -y jq tzdata python3 python3-dev python3-pip \ - python3-six python3-pyasn1 libportaudio2 alsa-utils \ + && apt-get install -y \ + jq tzdata python3 python3-dev python3-pip libportaudio2 alsa-utils \ && pip3 install google-assistant-library google-auth requests_oauthlib cherrypy \ && apt-get remove -y --purge python3-pip python3-dev \ && apt-get clean -y \ diff --git a/google_assistant/config.json b/google_assistant/config.json index bcc8797..b85b293 100644 --- a/google_assistant/config.json +++ b/google_assistant/config.json @@ -1,6 +1,6 @@ { "name": "Google Assistant", - "version": "1.0", + "version": "1.1", "slug": "google_assistant", "description": "A virtual personal assistant developed by Google", "url": "https://home-assistant.io/addons/google_assistant/",