diff --git a/assistant_relay/CHANGELOG.md b/assistant_relay/CHANGELOG.md index bee0846..35dd61b 100755 --- a/assistant_relay/CHANGELOG.md +++ b/assistant_relay/CHANGELOG.md @@ -1,4 +1,10 @@ -## 6.3 +## 0.6.4 +Update to Assistant Relay v3.0.6 + +Release Notes notes: +- Fixed a bug that set invalid date when clearing quiet hours times + +## 0.6.3 This add-on is now using a new image. This makes the installation more stable and faster. It also updates Assistant Relay to version 3.0.5 \ No newline at end of file diff --git a/assistant_relay/config.json b/assistant_relay/config.json index 6d4b9fb..4c49deb 100755 --- a/assistant_relay/config.json +++ b/assistant_relay/config.json @@ -1,6 +1,6 @@ { "name": "Assistant Relay", - "version": "0.6.3", + "version": "0.6.4", "slug": "assistant_relay", "description": "Send (broadcast) commands to your Google Assistant via REST command", "arch": ["amd64", "armv7"], diff --git a/docker files/amd64/dockerfile b/docker files/amd64/dockerfile index cbb0050..19b49e0 100755 --- a/docker files/amd64/dockerfile +++ b/docker files/amd64/dockerfile @@ -9,7 +9,7 @@ RUN mkdir /assistant_relay \ WORKDIR /assistant_relay -RUN wget https://github.com/greghesp/assistant-relay/releases/download/v3.0.5/release.zip \ +RUN wget https://github.com/greghesp/assistant-relay/releases/download/v3.0.6/release.zip \ && unzip release.zip \ && rm release.zip \ && sed -i -e 's#./bin/config.json#/data/config.json#g' /assistant_relay/helpers/server.js \ diff --git a/docker files/armv7/dockerfile b/docker files/armv7/dockerfile index 1491c4b..17eaa72 100755 --- a/docker files/armv7/dockerfile +++ b/docker files/armv7/dockerfile @@ -9,7 +9,7 @@ RUN mkdir /assistant_relay \ WORKDIR /assistant_relay -RUN wget https://github.com/greghesp/assistant-relay/releases/download/v3.0.5/release.zip \ +RUN wget https://github.com/greghesp/assistant-relay/releases/download/v3.0.6/release.zip \ && unzip release.zip \ && rm release.zip \ && sed -i -e 's#./bin/config.json#/data/config.json#g' /assistant_relay/helpers/server.js \ @@ -24,6 +24,7 @@ RUN wget https://github.com/greghesp/assistant-relay/releases/download/v3.0.5/re && sed -i -e 's#bin/audio-responses/#/data/audio-responses/#g' /assistant_relay/helpers/server.js \ && npm i -COPY run.sh / +WORKDIR / +RUN wget https://raw.githubusercontent.com/Apipa169/Assistant-Relay-for-Hassio/master/docker%20files/armv7/run.sh RUN chmod a+x /run.sh CMD [ "/run.sh" ] \ No newline at end of file