🎉 Release of add-on Spotify Connect 0.5.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-04-07 07:36:41 +00:00
parent 17b83105aa
commit d9bbabec1c
4 changed files with 19 additions and 17 deletions

View file

@ -893,10 +893,10 @@ SOFTWARE.
[ssh-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[ssh-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[ssh-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.4.1
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.4.1/README.md
[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.5.0
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.5.0/README.md
[spotify-issue]: https://github.com/hassio-addons/addon-spotify-connect/issues
[spotify-version-shield]: https://img.shields.io/badge/version-v0.4.1-blue.svg
[spotify-version-shield]: https://img.shields.io/badge/version-v0.5.0-blue.svg
[spotify-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/spotify-amd64.svg
[spotify-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[spotify-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -2,10 +2,16 @@
### Changed
- Upgrades add-on base image to 2.3.1
- Upgrades Spotifyd to 0.2.5
- :arrow_up: Upgrades add-on base image to 3.0.0
- :hammer: Makes log_level optional
- :fire: Removes custom log format override
- :arrow_up: cargo to 0.32.0-1~exp1ubuntu1~18.04.1
- :arrow_up: rustc to 1.31.0+dfsg1+llvm-2ubuntu1~18.04.1
- :arrow_up: Upgrades Spotifyd to 0.2.8
- :hammer: Rewrite add-on onto Bashio
- :ambulance: Workaround Docker issue by reinstating legacy tags
[changelog]: https://github.com/hassio-addons/addon-spotify-connect/compare/v0.4.0...v0.4.1
[changelog]: https://github.com/hassio-addons/addon-spotify-connect/compare/v0.4.1...v0.5.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck

View file

@ -31,13 +31,13 @@ to do is hook up your sound system to the Pi!
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.4.1/README.md
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.5.0/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
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/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-v0.4.1-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.4.1
[release-shield]: https://img.shields.io/badge/version-v0.5.0-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.5.0
[screenshot]: https://github.com/hassio-addons/addon-spotify-connect/raw/master/images/screenshot.png

View file

@ -1,6 +1,6 @@
{
"name": "Spotify Connect",
"version": "0.4.1",
"version": "0.5.0",
"slug": "spotify",
"description": "Play Spotify music on your Home Assistant device",
"url": "https://github.com/hassio-addons/addon-spotify-connect",
@ -8,7 +8,7 @@
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"map": [
@ -21,21 +21,17 @@
"host_network": false,
"audio": true,
"options": {
"log_level": "info",
"username": "",
"password": "",
"name": "Hass.io",
"bitrate": 160
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"username": "str",
"password": "str",
"name": "match(^[A-Za-z0-9-.]+$)",
"bitrate": "match(^(96|160|320)$)"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/spotify"
"image": "hassioaddons/spotify-{arch}"
}