Adding snips-injection (#546)

* Adding snips-injection
- Update dockerfile
- Snips injection version print
- Start snips-injection in run
- Versionbump to 5.2

* remove backtick accident

* Less run blocks

* format change in snips dockerfile

* Update CHANGELOG.md
This commit is contained in:
Lukas Bachschwell
2019-03-26 18:08:31 +01:00
committed by Pascal Vizeli
parent 67f4e355d3
commit e4ea67c64d
5 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 5.2
- Updated to snips 0.62.3
- Add snips-injection
## 5.1
- Updated to snips 0.60.8
- Containers built from base images

View File

@@ -22,7 +22,7 @@ RUN apt-get update \
fi
RUN apt-get update \
&& apt-get install -y snips-platform-voice snips-asr snips-watch \
&& apt-get install -y snips-platform-voice snips-asr snips-injection snips-watch \
&& rm -rf /var/lib/apt/lists/* \
&& curl -L -o /assistant_Hass_de.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_de.zip \
&& curl -L -o /assistant_Hass_en.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_en.zip \

View File

@@ -1,6 +1,6 @@
{
"name": "Snips.AI",
"version": "5.1",
"version": "5.2",
"slug": "snips",
"description": "Local voice control platform",
"url": "https://home-assistant.io/addons/snips/",

View File

@@ -94,6 +94,7 @@ echo "[INFO] Starting snips-watch"
( sleep 2; /usr/bin/snips-watch -vvv --no_color ) &
/usr/bin/snips-asr --version
/usr/bin/snips-injection --version
/usr/bin/snips-audio-server --version
/usr/bin/snips-dialogue --version
/usr/bin/snips-hotword --version

View File

@@ -73,7 +73,7 @@ fi
# Read "global" arguments
USE_INTERNAL_MQTT=true
ALL_SNIPS_COMPONENTS=("snips-asr-google" "snips-asr" "snips-audio-server" "snips-tts" "snips-hotword" "snips-nlu" "snips-dialogue" "snips-analytics" "snips-debug")
ALL_SNIPS_COMPONENTS=("snips-asr-google" "snips-asr" "snips-injection" "snips-audio-server" "snips-tts" "snips-hotword" "snips-nlu" "snips-dialogue" "snips-analytics" "snips-debug")
declare -A SNIPS_COMPONENTS
for c in "${ALL_SNIPS_COMPONENTS[@]}"
do