mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-03 18:41:30 +00:00
🎉 Release of add-on Example 1.2.0
This commit is contained in:
parent
a4a7399d26
commit
2b9df86db6
5 changed files with 68 additions and 0 deletions
23
README.md
23
README.md
|
@ -77,6 +77,19 @@ Python Apps and HADashboard using AppDaemon 3.x for Home Assistant
|
|||
|
||||
[:books: AppDaemon3 add-on documentation][addon-doc-appdaemon3]
|
||||
|
||||
### ✓ [Example][addon-example]
|
||||
|
||||
![Latest Version][example-version-shield]
|
||||
![Supports armhf Architecture][example-armhf-shield]
|
||||
![Supports aarch64 Architecture][example-aarch64-shield]
|
||||
![Supports amd64 Architecture][example-amd64-shield]
|
||||
![Supports i386 Architecture][example-i386-shield]
|
||||
![Docker Pulls][example-pulls-shield]
|
||||
|
||||
Example add-on by Community Hass.io Add-ons
|
||||
|
||||
[:books: Example add-on documentation][addon-doc-example]
|
||||
|
||||
### ✓ [Home Assistant Control Panel][addon-control-panel]
|
||||
|
||||
![Latest Version][control-panel-version-shield]
|
||||
|
@ -121,6 +134,7 @@ on the correct GitHub repository matching the add-on.
|
|||
- [Open an issue for the add-on: AirCast][aircast-issue]
|
||||
- [Open an issue for the add-on: AirSonos][airsonos-issue]
|
||||
- [Open an issue for the add-on: AppDaemon3][appdaemon3-issue]
|
||||
- [Open an issue for the add-on: Example][example-issue]
|
||||
- [Open an issue for the add-on: Home Assistant Control Panel][control-panel-issue]
|
||||
|
||||
For a general repository issue or add-on ideas [open an issue here][issue]
|
||||
|
@ -198,6 +212,15 @@ SOFTWARE.
|
|||
[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-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-doc-example]: https://github.com/hassio-addons/addon-example/blob/v1.2.0/README.md
|
||||
[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-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
|
||||
[example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[example-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[addon-control-panel]: https://github.com/hassio-addons/addon-control-panel/tree/v1.0.0
|
||||
[addon-doc-control-panel]: https://github.com/hassio-addons/addon-control-panel/blob/v1.0.0/README.md
|
||||
[control-panel-issue]: https://github.com/hassio-addons/addon-control-panel/issues
|
||||
|
|
20
example/CHANGELOG.md
Normal file
20
example/CHANGELOG.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
[Full Changelog][v1.1.0-v1.2.0]
|
||||
|
||||
### Added
|
||||
|
||||
- Adds add-on icon & logo
|
||||
|
||||
### Changed
|
||||
|
||||
- Prevents possible future Docker login issue
|
||||
- Use image tagged as test as a cache resource
|
||||
- Pass local CircleCI Docker socket into the build container
|
||||
- Updated maintenance year, it is 2018
|
||||
- Updates base image to v1.3.3
|
||||
- Allow add-on to access the Hass.io API
|
||||
|
||||
### Removed
|
||||
|
||||
- Removes Microbadger notification hooks
|
||||
|
||||
[v1.1.0-v1.2.0]: https://github.com/hassio-addons/addon-example/compare/v1.1.0...v1.2.0
|
25
example/config.json
Normal file
25
example/config.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "Example",
|
||||
"version": "1.2.0",
|
||||
"slug": "example",
|
||||
"description": "Example add-on by Community Hass.io Add-ons",
|
||||
"url": "https://github.com/hassio-addons/addon-example",
|
||||
"startup": "application",
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armhf",
|
||||
"i386"
|
||||
],
|
||||
"boot": "auto",
|
||||
"hassio_api": true,
|
||||
"options": {
|
||||
"log_level": "info",
|
||||
"seconds_between_quotes": 5
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||
"seconds_between_quotes": "int(1,120)"
|
||||
},
|
||||
"image": "hassioaddons/example-{arch}"
|
||||
}
|
BIN
example/icon.png
Normal file
BIN
example/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
example/logo.png
Normal file
BIN
example/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
Loading…
Add table
Add a link
Reference in a new issue