mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-04 19:11:30 +00:00
🎉 Release of add-on Home Assistant Control Panel 1.0.0
This commit is contained in:
parent
3c576d38a6
commit
a4a7399d26
5 changed files with 65 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]
|
[:books: AppDaemon3 add-on documentation][addon-doc-appdaemon3]
|
||||||
|
|
||||||
|
### ✓ [Home Assistant Control Panel][addon-control-panel]
|
||||||
|
|
||||||
|
![Latest Version][control-panel-version-shield]
|
||||||
|
![Supports armhf Architecture][control-panel-armhf-shield]
|
||||||
|
![Supports aarch64 Architecture][control-panel-aarch64-shield]
|
||||||
|
![Supports amd64 Architecture][control-panel-amd64-shield]
|
||||||
|
![Supports i386 Architecture][control-panel-i386-shield]
|
||||||
|
![Docker Pulls][control-panel-pulls-shield]
|
||||||
|
|
||||||
|
Simple to use control panel for the ultimate home automation setup
|
||||||
|
|
||||||
|
[:books: Home Assistant Control Panel add-on documentation][addon-doc-control-panel]
|
||||||
|
|
||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
Releases are based on [Semantic Versioning][semver], and use the format
|
Releases are based on [Semantic Versioning][semver], and use the format
|
||||||
|
@ -108,6 +121,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: AirCast][aircast-issue]
|
||||||
- [Open an issue for the add-on: AirSonos][airsonos-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: AppDaemon3][appdaemon3-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]
|
For a general repository issue or add-on ideas [open an issue here][issue]
|
||||||
|
|
||||||
|
@ -184,6 +198,15 @@ 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-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
|
||||||
|
[control-panel-version-shield]: https://img.shields.io/badge/version-v1.0.0-blue.svg
|
||||||
|
[control-panel-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/control-panel-armhf.svg
|
||||||
|
[control-panel-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||||
|
[control-panel-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||||
|
[control-panel-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||||
|
[control-panel-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||||
[awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg
|
[awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg
|
||||||
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
|
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
|
||||||
[discord]: https://discord.gg/c5DvZ4e
|
[discord]: https://discord.gg/c5DvZ4e
|
||||||
|
|
1
control-panel/CHANGELOG.md
Normal file
1
control-panel/CHANGELOG.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
🎉 Initial release!
|
41
control-panel/config.json
Normal file
41
control-panel/config.json
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"name": "Home Assistant Control Panel",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"slug": "control-panel",
|
||||||
|
"description": "Simple to use control panel for the ultimate home automation setup",
|
||||||
|
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-home-assistant-control-panel/49634?u=frenck",
|
||||||
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:7080]",
|
||||||
|
"startup": "system",
|
||||||
|
"arch": [
|
||||||
|
"aarch64",
|
||||||
|
"amd64",
|
||||||
|
"armhf",
|
||||||
|
"i386"
|
||||||
|
],
|
||||||
|
"boot": "auto",
|
||||||
|
"hassio_api": true,
|
||||||
|
"map": [
|
||||||
|
"ssl"
|
||||||
|
],
|
||||||
|
"ports": {
|
||||||
|
"7080/tcp": 7080
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"log_level": "info",
|
||||||
|
"ssl": false,
|
||||||
|
"certfile": "fullchain.pem",
|
||||||
|
"keyfile": "privkey.pem",
|
||||||
|
"ipv6": false
|
||||||
|
},
|
||||||
|
"schema": {
|
||||||
|
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||||
|
"ssl": "bool",
|
||||||
|
"certfile": "str",
|
||||||
|
"keyfile": "str",
|
||||||
|
"ipv6": "bool"
|
||||||
|
},
|
||||||
|
"environment": {
|
||||||
|
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
|
||||||
|
},
|
||||||
|
"image": "hassioaddons/control-panel-{arch}"
|
||||||
|
}
|
BIN
control-panel/icon.png
Normal file
BIN
control-panel/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
BIN
control-panel/logo.png
Normal file
BIN
control-panel/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Loading…
Add table
Add a link
Reference in a new issue