🎉 Release of add-on Example 1.3.0

This commit is contained in:
Community Hass.io Add-ons Bot 2018-05-13 19:26:40 +00:00
parent 6067bc9cb6
commit 326872cb3b
4 changed files with 76 additions and 16 deletions

View file

@ -311,10 +311,10 @@ SOFTWARE.
[appdaemon3-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [appdaemon3-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[appdaemon3-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [appdaemon3-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[appdaemon3-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [appdaemon3-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-example]: https://github.com/hassio-addons/addon-example/tree/v1.2.0 [addon-example]: https://github.com/hassio-addons/addon-example/tree/v1.3.0
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/v1.2.0/README.md [addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/v1.3.0/README.md
[example-issue]: https://github.com/hassio-addons/addon-example/issues [example-issue]: https://github.com/hassio-addons/addon-example/issues
[example-version-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg [example-version-shield]: https://img.shields.io/badge/version-v1.3.0-blue.svg
[example-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/example-armhf.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-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

27
example/CHANGELOG.md Normal file
View file

@ -0,0 +1,27 @@
[Full Changelog][changelog]
### Added
- Adds .yamllint configuration
- Adds Probot configuration
- Adds GitLab CI
- Adds add-on README template
### Fixed
- Fixes hadolint warnings
- Fixes Markdownlint warning in License
### Changed
- Updates README
- Upgrades add-on base image to v1.4.1
- Updates wget to 1.19.5-r0
### Removed
- Removes CodeClimate
- Replaces Changelog with GitHub releases
- Removes CircleCI
[changelog]: https://github.com/hassio-addons/addon-example/compare/v1.2.0...v1.3.0

View file

@ -1,7 +1,40 @@
# Community Hass.io Add-ons: Example # Community Hass.io Add-ons: Example
This is just a configuration stub to make the Hass.io repository work. [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
The add-on itself can be found at the following URL: [![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
<https://github.com/hassio-addons/addon-example> [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
Example add-on by Community Hass.io add-ons.
## About
This is an example add-on for Hass.io. When started, it displays a
random quote every 5 seconds.
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.
- 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.
- Small use of the Bash function library in our base images.
- The use of Docker label schema.
[Click here for the full documentation][docs]
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io?u=frenck
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[release-shield]: https://img.shields.io/badge/version-v1.3.0-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/v1.3.0
[docs]: https://github.com/hassio-addons/addon-example/blob/v1.3.0/README.md
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/frenck

View file

@ -1,25 +1,25 @@
{ {
"name": "Example", "name": "Example",
"version": "1.2.0", "version": "1.3.0",
"slug": "example", "slug": "example",
"description": "Example add-on by Community Hass.io Add-ons", "description": "Example add-on by Community Hass.io Add-ons",
"url": "https://github.com/hassio-addons/addon-example", "url": "https://github.com/hassio-addons/addon-example",
"startup": "application", "startup": "application",
"arch": [ "arch": [
"aarch64", "aarch64",
"amd64", "amd64",
"armhf", "armhf",
"i386" "i386"
], ],
"boot": "auto", "boot": "auto",
"hassio_api": true, "hassio_api": true,
"options": { "options": {
"log_level": "info", "log_level": "info",
"seconds_between_quotes": 5 "seconds_between_quotes": 5
}, },
"schema": { "schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"seconds_between_quotes": "int(1,120)" "seconds_between_quotes": "int(1,120)"
}, },
"image": "hassioaddons/example-{arch}" "image": "hassioaddons/example-{arch}"
} }