diff --git a/README.md b/README.md index a10ca8f00..73e2826f4 100644 --- a/README.md +++ b/README.md @@ -935,10 +935,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/af28014 -[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/af28014/README.md +[addon-spotify]: https://github.com/hassio-addons/addon-spotify-connect/tree/799fd1d +[addon-doc-spotify]: https://github.com/hassio-addons/addon-spotify-connect/blob/799fd1d/README.md [spotify-issue]: https://github.com/hassio-addons/addon-spotify-connect/issues -[spotify-version-shield]: https://img.shields.io/badge/version-af28014-blue.svg +[spotify-version-shield]: https://img.shields.io/badge/version-799fd1d-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 diff --git a/spotify/CHANGELOG.md b/spotify/CHANGELOG.md index 25bcd5d14..c3d6ad79d 100644 --- a/spotify/CHANGELOG.md +++ b/spotify/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog since v0.9.1 -- ⬆ Upgrade lock-threads workflow to 3.0.0 (#144) +- ⬆️ Upgrades librespot to 0.3.1 (#153) +- ⬆️ Upgrades add-on base image to 10.2.2 (#152) +- Migrate JSON config to YAML (#151) +- Switch to centralized GitHub Action Workflows (#150) +- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 (#145) + +Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. +- [Release notes](https://github.com/actions/checkout/releases) +- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) +- [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.3.5) + +--- +updated-dependencies: +- dependency-name: actions/checkout + dependency-type: direct:production + update-type: version-update:semver-patch +... + +Signed-off-by: dependabot[bot] + +Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +- ⬆️ Upgrade lock-threads workflow to 3.0.0 (#144) - ⬆️ Bump frenck/action-addon-linter from 2.3 to 2.4.1 (#143) Bumps [frenck/action-addon-linter](https://github.com/frenck/action-addon-linter) from 2.3 to 2.4.1. diff --git a/spotify/README.md b/spotify/README.md index da2fdb65c..68e0bdf61 100644 --- a/spotify/README.md +++ b/spotify/README.md @@ -52,6 +52,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-af28014-blue.svg -[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/af28014 +[release-shield]: https://img.shields.io/badge/version-799fd1d-blue.svg +[release]: https://github.com/hassio-addons/addon-spotify-connect/tree/799fd1d [screenshot]: https://github.com/hassio-addons/addon-spotify-connect/raw/main/images/screenshot.png \ No newline at end of file diff --git a/spotify/config.json b/spotify/config.json deleted file mode 100644 index 7b44b6be4..000000000 --- a/spotify/config.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "Spotify Connect", - "version": "af28014", - "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}" -} \ No newline at end of file diff --git a/spotify/config.yaml b/spotify/config.yaml new file mode 100644 index 000000000..6c29ddf77 --- /dev/null +++ b/spotify/config.yaml @@ -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: 799fd1d