Update Almond + Ada (#822)

This commit is contained in:
Pascal Vizeli
2019-11-08 09:31:23 +01:00
committed by GitHub
parent 8c819e6193
commit 3b9f9e0bae
7 changed files with 28 additions and 7 deletions

View File

@@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.3
- Update Ada to 0.4
## 0.2 ## 0.2
- Update Ada to 0.3 - Update Ada to 0.3

View File

@@ -5,6 +5,6 @@
"armhf": "homeassistant/armhf-base-debian:buster" "armhf": "homeassistant/armhf-base-debian:buster"
}, },
"args": { "args": {
"ADA_VERSION": "0.3" "ADA_VERSION": "0.4"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "Hey Ada!", "name": "Hey Ada!",
"version": "0.2", "version": "0.3",
"slug": "ada", "slug": "ada",
"description": "Home Assistant featured voice assist", "description": "Home Assistant featured voice assist",
"url": "https://home-assistant.io/addons/ada/", "url": "https://home-assistant.io/addons/ada/",

18
almond/CHANGELOG.md Normal file
View File

@@ -0,0 +1,18 @@
# Changelog
## 0.4
- Update Almond to 1.7.0
## 0.3
- Add automatic Almond setup
## 0.2
- Add Ingress
- Update almond to 1.6.0
## 0.1
- Initial version

View File

@@ -20,15 +20,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install Almond # Install Almond
ARG ALMOND_COMMIT ARG ALMOND_VERSION
WORKDIR /opt/almond WORKDIR /opt/almond
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
git \ git \
python-dev \ python-dev \
build-essential \ build-essential \
\ \
&& git clone https://github.com/stanford-oval/almond-server . \ && git clone -b ${ALMOND_VERSION} --depth 1 https://github.com/stanford-oval/almond-server . \
&& git checkout ${ALMOND_COMMIT} \
&& rm -fr .git \ && rm -fr .git \
&& yarn \ && yarn \
\ \

View File

@@ -5,6 +5,6 @@
"aarch64": "homeassistant/aarch64-base-debian:buster" "aarch64": "homeassistant/aarch64-base-debian:buster"
}, },
"args": { "args": {
"ALMOND_COMMIT": "87d37637c8bcaea8a86d2e1eba039184d4434049" "ALMOND_VERSION": "v1.7.0"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "Almond", "name": "Almond",
"version": "0.3", "version": "0.4",
"slug": "almond", "slug": "almond",
"description": "The home server version of Almond", "description": "The home server version of Almond",
"url": "https://home-assistant.io/addons/almond/", "url": "https://home-assistant.io/addons/almond/",