⬆️ Updating add-on Spotify Connect to c2f7e4c

This commit is contained in:
Community Hass.io Add-ons Bot 2018-07-23 22:44:52 +00:00
parent 2550557197
commit cb82e97006
4 changed files with 19 additions and 17 deletions

View file

@ -617,10 +617,10 @@ SOFTWARE.
[shinobi-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[shinobi-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[shinobi-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/7fab026
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/7fab026/README.md
[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/c2f7e4c
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/c2f7e4c/README.md
[spotify-issue]: https://github.com/hassio-addons/addon-spotify-connect/issues
[spotify-version-shield]: https://img.shields.io/badge/version-7fab026-blue.svg
[spotify-version-shield]: https://img.shields.io/badge/version-c2f7e4c-blue.svg
[spotify-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/spotify.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

@ -1,9 +1,3 @@
2018/07/23 17:55 UTC - [7fab026](https://github.com/hassio-addons/addon-spotify-connect/commit/7fab026af1d049bf57d902ea3d7242a8dfd64853) by [@frenck](https://github.com/frenck)
> :tractor: Switches add-on base to Ubuntu
* :tractor: Initial refactor to Ubuntu base
* :rocket: Moves GitLab CI to use Ubuntu
* :ambulance: Fixes typo in Dockerfile
2018/07/23 22:28 UTC - [c2f7e4c](https://github.com/hassio-addons/addon-spotify-connect/commit/c2f7e4c141b25b52ec635391e004612d86b065ed) by [@frenck](https://github.com/frenck)
> :sparkles: Adds add-on configuration handling

View file

@ -39,11 +39,11 @@ If you are more interested in stable releases of our add-ons:
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/7fab026/README.md
[docs]: https://github.com/hassio-addons/addon-spotify-connect/blob/c2f7e4c/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-7fab026-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/7fab026
[release-shield]: https://img.shields.io/badge/version-c2f7e4c-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/c2f7e4c
[screenshot]: https://github.com/hassio-addons/addon-spotify-connect/raw/master/images/screenshot.jpg

View file

@ -1,6 +1,6 @@
{
"name": "Spotify Connect",
"version": "7fab026",
"version": "c2f7e4c",
"slug": "spotify",
"description": "Lorem ipsum",
"url": "https://community.home-assistant.io/?u=frenck",
@ -17,10 +17,18 @@
"host_network": false,
"audio": true,
"options": {
"log_level": "info"
"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}"