mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-04 11:11:25 +00:00
⬆️ Updating add-on Spotify Connect to 799fd1d
This commit is contained in:
parent
6778394a89
commit
0487827b1d
5 changed files with 49 additions and 33 deletions
|
@ -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
|
||||
|
|
|
@ -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] <support@github.com>
|
||||
|
||||
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.
|
||||
|
|
|
@ -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
|
|
@ -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}"
|
||||
}
|
22
spotify/config.yaml
Normal file
22
spotify/config.yaml
Normal 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: 799fd1d
|
Loading…
Add table
Add a link
Reference in a new issue