🎉 Release of add-on Happy Bubbles 2.0.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-03-23 19:50:32 +00:00
parent 18af293d1c
commit d5d5a0153f
4 changed files with 20 additions and 26 deletions

View file

@ -715,10 +715,10 @@ SOFTWARE.
[grafana-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
[grafana-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[grafana-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
[addon-happy-bubbles]: https://github.com/hassio-addons/addon-happy-bubbles/tree/v1.2.1
[addon-doc-happy-bubbles]: https://github.com/hassio-addons/addon-happy-bubbles/blob/v1.2.1/README.md
[addon-happy-bubbles]: https://github.com/hassio-addons/addon-happy-bubbles/tree/v2.0.0
[addon-doc-happy-bubbles]: https://github.com/hassio-addons/addon-happy-bubbles/blob/v2.0.0/README.md
[happy-bubbles-issue]: https://github.com/hassio-addons/addon-happy-bubbles/issues
[happy-bubbles-version-shield]: https://img.shields.io/badge/version-v1.2.1-blue.svg
[happy-bubbles-version-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg
[happy-bubbles-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/happy-bubbles-armhf.svg
[happy-bubbles-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[happy-bubbles-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,19 +1,18 @@
[Full Changelog][changelog]
### Changed
### Changes
- Upgrades nginx to 1.14.2-r0
- Fixes spelling error in Dockerfile
- Removes BountySource links
- Removes Anchore.io links
- Updates maintenance year to 2019
- Refactor of GitLab CI
- Upgrades add-on base image to 2.3.1
- Upgrades wget to 1.20.1-r0
- Configure Renovate (#6)
- Replaces add-on link with GitHub link
- :arrow_up: Upgrades add-on base image to 3.0.1
- :hammer: Makes log_level optional
- :fire: Removes custom log format override
- :fire: Removes IPv6 switch
- :fire: Removes obsolete opt folder creation
- :hammer: Rewrite add-on onto Bashio
- :hammer: Makes NGinx wait for Happy Bubbles before starting
- :sparkles: Adds support for ARMv7
- :books: Updates documentation for ARMv7
[changelog]: https://github.com/hassio-addons/addon-happy-bubbles/compare/v1.2.0...v1.2.1
[changelog]: https://github.com/hassio-addons/addon-happy-bubbles/compare/v1.2.1...v2.0.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck

View file

@ -49,12 +49,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-happy-bubbles/blob/v1.2.1/README.md
[docs]: https://github.com/hassio-addons/addon-happy-bubbles/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-happy-bubbles/53511?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.1-blue.svg
[release]: https://github.com/hassio-addons/addon-happy-bubbles/tree/v1.2.1
[release-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg
[release]: https://github.com/hassio-addons/addon-happy-bubbles/tree/v2.0.0

View file

@ -1,6 +1,6 @@
{
"name": "Happy Bubbles",
"version": "1.2.1",
"version": "2.0.0",
"slug": "happy-bubbles",
"description": "Presence detection server for Happy Bubbles Bluetooth beacon-based presence detection system.",
"url": "https://github.com/hassio-addons/addon-happy-bubbles",
@ -9,6 +9,7 @@
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf",
"i386"
],
@ -25,11 +26,9 @@
"5555/tcp": 5555
},
"options": {
"log_level": "info",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"ipv6": false,
"mqtt_host": "homeassistant",
"mqtt_port": 1883,
"mqtt_client_id": "happy_bubbles",
@ -37,19 +36,15 @@
"mqtt_password": ""
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"ipv6": "bool",
"mqtt_host": "str",
"mqtt_port": "port",
"mqtt_client_id": "str",
"mqtt_username": "str",
"mqtt_password": "str"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/happy-bubbles-{arch}"
}