⬆️ Updating add-on Example to fd207a4

This commit is contained in:
Community Hass.io Add-ons Bot 2020-09-23 22:56:30 +00:00
parent 9c7d6d16f4
commit 465cd38309
5 changed files with 18 additions and 19 deletions

View file

@ -916,10 +916,10 @@ SOFTWARE.
[bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[bookstack-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[bookstack-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-example]: https://github.com/hassio-addons/addon-example/tree/7b66507
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/7b66507/README.md
[addon-example]: https://github.com/hassio-addons/addon-example/tree/fd207a4
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/fd207a4/README.md
[example-issue]: https://github.com/hassio-addons/addon-example/issues
[example-version-shield]: https://img.shields.io/badge/version-7b66507-blue.svg
[example-version-shield]: https://img.shields.io/badge/version-fd207a4-blue.svg
[example-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/example-armhf.svg
[example-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,4 +1,3 @@
# Changelog since v3.3.2
- ✏ Split add-on documentation
- 🔨 Implement OCI image specification on labels
- ⬆ Upgrades add-on base image to v7.2.0
# Changelog since v3.5.0
- 👕 Ignore shellcheck warning
- ⬆ Upgrades add-on base image to v8.0.3

View file

@ -1,6 +1,6 @@
# Home Assistant Community Add-on: Example
This is an example add-on for Hass.io. When started, it displays a
This is an example add-on for Home Assistant. When started, it displays a
random quote every 5 seconds.
It shows off several features and structures like:
@ -10,8 +10,8 @@ It shows off several features and structures like:
- The use of the `config.json` and `build.json` files.
- General shell scripting structure (`run.sh`).
- Quality assurance using CodeClimate.
- Continuous integration and deployment using CircleCI.
- Usage of the Community Hass.io Add-ons build environment.
- Continuous integration and deployment using GitLab.
- Usage of the Community Home Assistant Add-ons build environment.
- Small use of the Bash function library in our base images.
- The use of Docker label schema.
@ -40,7 +40,7 @@ seconds_between_quotes: 5
### Option: `log_level`
The `log_level` option controls the level of log output by the addon and can
The `log_level` option controls the level of log output by the add-on and can
be changed to be more or less verbose, which might be useful when you are
dealing with an unknown issue. Possible values are:

View file

@ -8,11 +8,11 @@
[![Support Frenck on Patreon][patreon-shield]][patreon]
Example add-on by Community Hass.io add-ons.
Example add-on by Community Home Assistant add-ons.
## About
This is an example add-on for Hass.io. When started, it displays a
This is an example add-on for Home Assistant. When started, it displays a
random quote every 5 seconds.
It shows off several features and structures like:
@ -22,8 +22,8 @@ It shows off several features and structures like:
- The use of the `config.json` and `build.json` files.
- General shell scripting structure (`run.sh`).
- Quality assurance using CodeClimate.
- Continuous integration and deployment using CircleCI.
- Usage of the Community Hass.io Add-ons build environment.
- Continuous integration and deployment using GitLab.
- Usage of the Community Home Assistant Add-ons build environment.
- Small use of the Bash function library in our base images.
- The use of Docker label schema.
@ -56,5 +56,5 @@ 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-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-7b66507-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/7b66507
[release-shield]: https://img.shields.io/badge/version-fd207a4-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/fd207a4

View file

@ -1,8 +1,8 @@
{
"name": "Example",
"version": "7b66507",
"version": "fd207a4",
"slug": "example",
"description": "Example add-on by Community Hass.io Add-ons",
"description": "Example add-on by Community Home Assistant Add-ons",
"url": "https://github.com/hassio-addons/addon-example",
"startup": "application",
"init": false,