⬆️ Updating add-on Spotify Connect to c431828

This commit is contained in:
Community Hass.io Add-ons Bot 2020-02-28 00:32:47 +00:00
parent 08e2a809a4
commit e4490b3919
4 changed files with 14 additions and 13 deletions

View file

@ -1,4 +1,6 @@
# Changelog since v0.7.1
- :hammer: Refactor add-on configuration
- :hammer: Put add-on on the host network
- :arrow_down: Downgrade Spotifyd to v0.2.23
- :pencil2: Replace some Hass.io occurances
- :sparkles: Adds libasound2-plugins

View file

@ -48,7 +48,7 @@ If you are more interested in stable releases of our add-ons:
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/c345aa8/README.md
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/c431828/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-spotify-connect/61210?u=frenck
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
@ -57,6 +57,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-c345aa8-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/c345aa8
[release-shield]: https://img.shields.io/badge/version-c431828-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/c431828
[screenshot]: https://github.com/hassio-addons/addon-spotify-connect/raw/master/images/screenshot.png

View file

@ -1,6 +1,6 @@
{
"name": "Spotify Connect",
"version": "c345aa8",
"version": "c431828",
"slug": "spotify",
"description": "Play Spotify music on your Home Assistant device",
"url": "https://github.com/hassio-addons/addon-spotify-connect",
@ -17,19 +17,18 @@
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"host_network": true,
"audio": true,
"options": {
"username": "",
"password": "",
"name": "HomeAssistant",
"bitrate": 160
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"username": "str",
"password": "password",
"name": "match(^[A-Za-z0-9-.]+$)",
"bitrate": "match(^(96|160|320)$)"
"username": "str?",
"password": "password?",
"name": "match(^[A-Za-z0-9-.]+$)?",
"bitrate": "list(96|160|320)"
},
"image": "hassioaddons/spotify-{arch}"
}