🎉 Release of add-on Spotify Connect 0.10.0

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-11 12:08:44 +00:00
parent 8ffaef7134
commit 2c56ce8e85
5 changed files with 41 additions and 42 deletions

View file

@ -912,10 +912,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.9.1
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.9.1/README.md
[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.10.0
[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/v0.10.0/README.md
[spotify-issue]: https://github.com/hassio-addons/addon-spotify-connect/issues
[spotify-version-shield]: https://img.shields.io/badge/version-v0.9.1-blue.svg
[spotify-version-shield]: https://img.shields.io/badge/version-v0.10.0-blue.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
[spotify-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg

View file

@ -1,17 +1,21 @@
## Whats changed
## 🚀 Enhancements
- Migrate JSON config to YAML @frenck (#151)
## 🧰 Maintenance
- 🚀 Add-on CI improvements @frenck (#130)
## 📚 Documentation
- 🚑 Fix contributing link in readme @frenck (#133)
- ⬆️ Upgrade lock-threads workflow to 3.0.0 @frenck (#144)
- Switch to centralized GitHub Action Workflows @frenck (#150)
## ⬆️ Dependency updates
- ⬆️ Bump actions/stale from 3.0.19 to 4 @dependabot (#128)
- ⬆️ Bump frenck/action-addon-linter from 2.1 to 2.2 @dependabot (#127)
- ⬆️ Upgrades cargo to 1.52.1-r1 @frenck (#131)
- ⬆️ Bump dessant/lock-threads from 2.1.1 to 2.1.2 @dependabot (#132)
- ⬆️ Upgrades add-on base image to v10.0.1 @frenck (#134)
- ⬆️ Bump docker/build-push-action from 2.6.1 to 2.7.0 @dependabot (#135)
- ⬆️ Bump frenck/action-addon-linter from 2.2 to 2.3 @dependabot (#137)
- ⬆️ Bump docker/setup-buildx-action from 1.5.1 to 1.6.0 @dependabot (#139)
- ⬆️ Bump creyD/prettier_action from 3.3 to 4.0 @dependabot (#140)
- ⬆️ Bump frenck/action-addon-linter from 2.3 to 2.4.1 @dependabot (#143)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 @dependabot (#145)
- ⬆️ Upgrades add-on base image to 10.2.2 @frenck (#152)
- ⬆️ Upgrades librespot to 0.3.1 @frenck (#153)

View file

@ -49,6 +49,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-v0.9.1-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.9.1
[release-shield]: https://img.shields.io/badge/version-v0.10.0-blue.svg
[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/v0.10.0
[screenshot]: https://github.com/hassio-addons/addon-spotify-connect/raw/main/images/screenshot.png

View file

@ -1,27 +0,0 @@
{
"name": "Spotify Connect",
"version": "0.9.1",
"slug": "spotify",
"description": "Play Spotify music on your Home Assistant device",
"url": "https://github.com/hassio-addons/addon-spotify-connect",
"arch": [
"aarch64",
"amd64",
"armv7",
"i386"
],
"host_network": true,
"audio": true,
"options": {
"name": "Home Assistant",
"bitrate": 160
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"name": "str",
"bitrate": "list(96|160|320)",
"username": "str?",
"password": "password?"
},
"image": "ghcr.io/hassio-addons/spotify/{arch}"
}

22
spotify/config.yaml Normal file
View file

@ -0,0 +1,22 @@
arch:
- aarch64
- amd64
- armv7
- i386
audio: true
description: Play Spotify music on your Home Assistant device
host_network: true
image: ghcr.io/hassio-addons/spotify/{arch}
name: Spotify Connect
options:
bitrate: 160
name: Home Assistant
schema:
bitrate: list(96|160|320)
log_level: list(trace|debug|info|notice|warning|error|fatal)?
name: str
password: password?
username: str?
slug: spotify
url: https://github.com/hassio-addons/addon-spotify-connect
version: 0.10.0