diff --git a/README.md b/README.md index 93ad6ad1..5b5af9d1 100644 --- a/README.md +++ b/README.md @@ -645,10 +645,10 @@ SOFTWARE. [adguard-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [adguard-armv7-shield]: https://img.shields.io/badge/armv7-no-red.svg [adguard-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-aircast]: https://github.com/hassio-addons/addon-aircast/tree/v1.2.0 -[addon-doc-aircast]: https://github.com/hassio-addons/addon-aircast/blob/v1.2.0/README.md +[addon-aircast]: https://github.com/hassio-addons/addon-aircast/tree/v2.0.0 +[addon-doc-aircast]: https://github.com/hassio-addons/addon-aircast/blob/v2.0.0/README.md [aircast-issue]: https://github.com/hassio-addons/addon-aircast/issues -[aircast-version-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg +[aircast-version-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg [aircast-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/aircast-amd64.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 diff --git a/aircast/CHANGELOG.md b/aircast/CHANGELOG.md index e0a601cb..9cb9b692 100644 --- a/aircast/CHANGELOG.md +++ b/aircast/CHANGELOG.md @@ -2,15 +2,16 @@ ### Changed -- Removes BountySource links -- Removes Anchore.io links -- Replaces add-on link with GitHub link -- Updates maintenance year to 2019 -- Upgrades AirConnect to 0.2.2.4 -- Upgrades libssl1.0.0 to 1.0.2n-1ubuntu5.2 -- Refactor of GitLab CI -- Configure Renovate (#13) -- Upgrades add-on base image to 2.2.1 -- Fixes spelling error in Dockerfile +- Upgrades add-on base image to 3.0.0 +- Updates documentation for ARMv7 +- Removes custom log format override +- Makes log_level optional +- Upgrades libssl1.0.0 to 1.0.2n-1ubuntu5.3 +- Rewrite add-on onto Bashio +- Fixes typo in GitLab CI file +- Correct Aircast binary filename -[changelog]: https://github.com/hassio-addons/addon-aircast/compare/v1.1.0...v1.2.0 \ No newline at end of file +[changelog]: https://github.com/hassio-addons/addon-aircast/compare/v1.2.0...v2.0.0 + +Questions? Join our Discord server! https://discord.me/hassioaddons +Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck \ No newline at end of file diff --git a/aircast/README.md b/aircast/README.md index b83f7ef7..65f7a145 100644 --- a/aircast/README.md +++ b/aircast/README.md @@ -42,12 +42,12 @@ 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/478094546522079232.svg [discord]: https://discord.me/hassioaddons -[docs]: https://github.com/hassio-addons/addon-aircast/blob/v1.2.0/README.md +[docs]: https://github.com/hassio-addons/addon-aircast/blob/v2.0.0/README.md [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg [forum]: https://community.home-assistant.io/t/community-hass-io-add-on-aircast/36742?u=frenck [maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg [patreon-shield]: https://www.frenck.nl/images/patreon.png [patreon]: https://www.patreon.com/frenck [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg -[release-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg -[release]: https://github.com/hassio-addons/addon-aircast/tree/v1.2.0 \ No newline at end of file +[release-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg +[release]: https://github.com/hassio-addons/addon-aircast/tree/v2.0.0 \ No newline at end of file diff --git a/aircast/config.json b/aircast/config.json index 5f11cae7..199ab228 100644 --- a/aircast/config.json +++ b/aircast/config.json @@ -1,6 +1,6 @@ { "name": "AirCast", - "version": "1.2.0", + "version": "2.0.0", "slug": "aircast", "description": "AirPlay capabilities for your Chromecast devices.", "url": "https://github.com/hassio-addons/addon-aircast", @@ -8,7 +8,7 @@ "arch": [ "aarch64", "amd64", - "armhf", + "armv7", "i386" ], "boot": "auto", @@ -20,21 +20,17 @@ "config:rw" ], "options": { - "log_level": "info", "address": "", "latency_rtp": 0, "latency_http": 0, "drift": false }, "schema": { - "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "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