forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for new audo layer (home-assistant#1153)
* Add support for new audo layer * Add layer * restucture * better struct * Improve devcontainer * Fix container * Fix LN * disable lint * ignore
- Loading branch information
Showing
30 changed files
with
238 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
disable=SC1008 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,51 @@ | ||
# Changelog | ||
|
||
## 1.0 | ||
## 1.1.0 | ||
|
||
- Renaming Home Assistant | ||
- Convert to s6-overlay | ||
- Support new audio backend | ||
|
||
## 1.0.0 | ||
|
||
- Support aarch64 in armv7 combat mode | ||
|
||
## 0.9 | ||
## 0.9.0 | ||
|
||
- Corrected link to documentation inside the add-on | ||
- Adjust source links in Dockerfile | ||
- Update add-on documentation to match current state | ||
|
||
## 0.8 | ||
## 0.8.0 | ||
|
||
- Fix API url for access to Home Assistant | ||
|
||
## 0.7 | ||
## 0.7.0 | ||
|
||
- Add missing options | ||
|
||
## 0.6 | ||
## 0.6.0 | ||
|
||
- Update Ada to 0.7 | ||
- Add options to change TTS / STT Home Assistant provider | ||
|
||
## 0.5 | ||
## 0.5.0 | ||
|
||
- Update Ada to 0.6 | ||
|
||
## 0.4 | ||
## 0.4.0 | ||
|
||
- Update Ada to 0.5 | ||
|
||
## 0.3 | ||
## 0.3.0 | ||
|
||
- Update Ada to 0.4 | ||
|
||
## 0.2 | ||
## 0.2.0 | ||
|
||
- Update Ada to 0.3 | ||
- Add armhf support | ||
|
||
## 0.1 | ||
## 0.1.0 | ||
|
||
- Initial support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/execlineb -S0 | ||
# ============================================================================== | ||
# Take down the S6 supervision tree when Ada fails | ||
# ============================================================================== | ||
if { s6-test ${1} -ne 0 } | ||
if { s6-test ${1} -ne 256 } | ||
|
||
s6-svscanctl -t /var/run/s6/services |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/with-contenv bashio | ||
# ============================================================================== | ||
# Start Ada service | ||
# ============================================================================== | ||
STT=$(bashio::config 'stt') | ||
TTS=$(bashio::config 'tts') | ||
|
||
exec python3 -m ada --url "http://supervisor/core/api" --key "$SUPERVISOR_TOKEN" --stt "$STT" --tts "$TTS" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.