diff --git a/README.md b/README.md index 9c4dc4c06..13e921e51 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,19 @@ https://github.com/hassio-addons/repository-edge ## Add-ons provided by this repository +### ✓ [AirCast][addon-aircast] + +![Latest Version][aircast-version-shield] +![Supports armhf Architecture][aircast-armhf-shield] +![Supports aarch64 Architecture][aircast-aarch64-shield] +![Supports amd64 Architecture][aircast-amd64-shield] +![Supports i386 Architecture][aircast-i386-shield] +![Docker Pulls][aircast-pulls-shield] + +AirPlay capabilities for your Chromecast devices. + +[:books: AirCast add-on documentation][addon-doc-aircast] + ## Releases Add-on releases are **NOT** based on [Semantic Versioning][semver], unlike @@ -61,6 +74,7 @@ You could also open an issue here on GitHub. Note, we use a separate GitHub repository for each add-on. Please ensure you are creating the issue on the correct GitHub repository matching the add-on. +- [Open an issue for the add-on: AirCast][aircast-issue] For a general repository issue or add-on ideas [open an issue here][issue] @@ -110,6 +124,15 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +[addon-aircast]: https://github.com/hassio-addons/addon-aircast/tree/v0.3.0 +[addon-doc-aircast]: https://github.com/hassio-addons/addon-aircast/blob/v0.3.0/README.md +[aircast-issue]: https://github.com/hassio-addons/addon-aircast/issues +[aircast-version-shield]: https://img.shields.io/badge/version-v0.3.0-blue.svg +[aircast-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/aircast-armhf.svg +[aircast-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[aircast-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[aircast-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[aircast-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [discord-shield]: https://img.shields.io/discord/330944238910963714.svg [discord]: https://discord.gg/c5DvZ4e diff --git a/aircast/CHANGELOG.md b/aircast/CHANGELOG.md new file mode 100644 index 000000000..3d4411349 --- /dev/null +++ b/aircast/CHANGELOG.md @@ -0,0 +1,13 @@ +[Full Changelog][v0.2.0-v0.3.0] + +### Added + +- Adds add-on icon + +### Changed + +- Upgrades add-on base image to v1.0.0 +- Upgrades AirCast server to v0.2.0.5 +- Optimizes add-on logo + +[v0.2.0-v0.3.0]: https://github.com/hassio-addons/addon-aircast/compare/v0.2.0...v0.3.0 \ No newline at end of file diff --git a/aircast/config.json b/aircast/config.json new file mode 100644 index 000000000..8b2013353 --- /dev/null +++ b/aircast/config.json @@ -0,0 +1,30 @@ +{ + "name": "AirCast", + "version": "0.3.0", + "slug": "aircast", + "description": "AirPlay capabilities for your Chromecast devices.", + "url": "https://community.home-assistant.io/t/community-hass-io-add-on-aircast/36742?u=frenck", + "startup": "services", + "boot": "auto", + "hassio_api": true, + "homeassistant_api": false, + "host_network": true, + "options": { + "log_level": "info", + "address": "", + "latency_rtp": 0, + "latency_http": 0, + "drift": false + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "address": "str", + "latency_rtp": "int", + "latency_http": "int", + "drift": "bool" + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}" + }, + "image": "hassioaddons/aircast-{arch}" +} \ No newline at end of file diff --git a/aircast/icon.png b/aircast/icon.png new file mode 100644 index 000000000..6934a2c13 Binary files /dev/null and b/aircast/icon.png differ diff --git a/aircast/logo.png b/aircast/logo.png new file mode 100644 index 000000000..4733d1135 Binary files /dev/null and b/aircast/logo.png differ