🎉 Release of add-on Example 4.3.0

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-02 11:05:22 +00:00
parent 5603b096ab
commit b2a915fe38
8 changed files with 47 additions and 52 deletions

View file

@ -721,10 +721,10 @@ SOFTWARE.
[esphome-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
[esphome-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[esphome-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
[addon-example]: https://github.com/hassio-addons/addon-example/tree/v4.2.1
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/v4.2.1/README.md
[addon-example]: https://github.com/hassio-addons/addon-example/tree/v4.3.0
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/v4.3.0/README.md
[example-issue]: https://github.com/hassio-addons/addon-example/issues
[example-version-shield]: https://img.shields.io/badge/version-v4.2.1-blue.svg
[example-version-shield]: https://img.shields.io/badge/version-v4.3.0-blue.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
[example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View file

@ -1,12 +1,26 @@
## Whats changed
## 🚀 Enhancements
- Migrate JSON add-on config to YAML @frenck (#102)
## 🧰 Maintenance
- 🚀 Add-on CI improvements @frenck (#87)
- Switch add-on to centralized GitHub Action Workflows @frenck (#101)
## 📚 Documentation
- 🚑 Fix contributing link in readme @frenck (#88)
## ⬆️ Dependency updates
- ⬆️ Bump docker/setup-buildx-action from 1.3.0 to 1.4.1 @dependabot (#77)
- ⬆️ Bump docker/build-push-action from 2.5.0 to 2.6.1 @dependabot (#78)
- ⬆️ Bump docker/setup-buildx-action from 1.4.1 to 1.5.0 @dependabot (#79)
- ⬆️ Bump dessant/lock-threads from 2.0.3 to 2.1.1 @dependabot (#81)
- ⬆️ Bump docker/setup-buildx-action from 1.5.0 to 1.5.1 @dependabot (#82)
- ⬆️ Bump actions/stale from 3.0.19 to 4 @dependabot (#83)
- ⬆️ Bump frenck/action-addon-linter from 2.1 to 2.2 @dependabot (#84)
- ⬆️ Upgrades add-on base image to v10.0.1 @frenck (#86)
- ⬆️ Bump dessant/lock-threads from 2.1.1 to 2.1.2 @dependabot (#89)
- ⬆️ Bump docker/build-push-action from 2.6.1 to 2.7.0 @dependabot (#90)
- ⬆️ Bump frenck/action-addon-linter from 2.2 to 2.3 @dependabot (#92)
- ⬆️ Bump creyD/prettier_action from 3.3 to 4.0 @dependabot (#94)
- ⬆️ Bump docker/setup-buildx-action from 1.5.1 to 1.6.0 @dependabot (#93)
- ⬆️ Bump frenck/action-addon-linter from 2.3 to 2.4.1 @dependabot (#97)
- ⬆️ Upgrades add-on base image to 10.1.1 @frenck (#98)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 @dependabot (#100)
- ⬆️ Upgrades add-on base image to v10.2.0 @frenck (#103)

View file

@ -7,7 +7,7 @@ It shows off several features and structures like:
- Full blown GitHub repository.
- General Dockerfile structure and setup.
- The use of the `config.json` and `build.json` files.
- The use of the `config.yaml` and `build.yaml` files.
- General shell scripting structure (`run.sh`).
- Quality assurance using CodeClimate.
- Continuous integration and deployment using GitLab.

View file

@ -37,5 +37,5 @@ It shows off several features and structures like:
[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-v4.2.1-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/v4.2.1
[release-shield]: https://img.shields.io/badge/version-v4.3.0-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/v4.3.0

View file

@ -1,24 +0,0 @@
{
"name": "Example",
"version": "4.2.1",
"slug": "example",
"description": "Example add-on by Community Home Assistant Add-ons",
"url": "https://github.com/hassio-addons/addon-example",
"init": false,
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"options": {
"log_level": "info",
"seconds_between_quotes": 5
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)",
"seconds_between_quotes": "int(1,120)"
},
"image": "ghcr.io/hassio-addons/example/{arch}"
}

19
example/config.yaml Normal file
View file

@ -0,0 +1,19 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
description: Example add-on by Community Home Assistant Add-ons
image: ghcr.io/hassio-addons/example/{arch}
init: false
name: Example
options:
log_level: info
seconds_between_quotes: 5
schema:
log_level: list(trace|debug|info|notice|warning|error|fatal)
seconds_between_quotes: int(1,120)
slug: example
url: https://github.com/hassio-addons/addon-example
version: 4.3.0

View file

@ -1,7 +0,0 @@
configuration:
log_level:
description: 'The amount of logging the add-on should do.'
name: 'Log level'
seconds_between_quotes:
description: 'The number of seconds the add-on waits until showing a new quote in the add-on log.'
name: 'Sekunden zwischen Zitaten'

View file

@ -1,7 +0,0 @@
configuration:
log_level:
description: 'Bepaalt het niveau van de logs die de add-on toont.'
name: 'Log niveau'
seconds_between_quotes:
description: 'The number of seconds the add-on waits until showing a new quote in the add-on log.'
name: 'Aantal seconden tussen de citaten'