From d2a7e159401787ac10494eb9b9cc544f75d2aae1 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 23 Apr 2019 11:43:25 +0200 Subject: [PATCH 1/2] :books: Standarizes supported architectures badges (#18) --- README.md | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index ec240eb..a042fb2 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ ![Project Stage][project-stage-shield] [![License][license-shield]](LICENSE.md) +![Supports armhf Architecture][armhf-shield] +![Supports armv7 Architecture][armv7-shield] +![Supports aarch64 Architecture][aarch64-shield] +![Supports amd64 Architecture][amd64-shield] +![Supports i386 Architecture][i386-shield] + [![GitLab CI][gitlabci-shield]][gitlabci] ![Project Maintenance][maintenance-shield] [![GitHub Activity][commits-shield]][commits] @@ -51,16 +57,6 @@ comparison to installing any other Hass.io add-on. **NOTE**: Do not add this repository to Hass.io, please use: `https://github.com/hassio-addons/repository`. -## Docker status - -![Supports armhf Architecture][armhf-shield] -![Supports aarch64 Architecture][aarch64-shield] -![Supports amd64 Architecture][amd64-shield] -![Supports i386 Architecture][i386-shield] - -[![Docker Layers][layers-shield]][microbadger] -[![Docker Pulls][pulls-shield]][dockerhub] - ## Configuration **Note**: _Remember to restart the add-on when the configuration is changed._ @@ -191,6 +187,7 @@ SOFTWARE. [aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [banner]: https://raw.githubusercontent.com/timmo001/home-panel/master/docs/resources/banner.png [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg [buymeacoffee]: https://www.buymeacoffee.com/timmo @@ -214,14 +211,11 @@ SOFTWARE. [i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [issue]: https://github.com/hassio-addons/addon-home-panel/issues [keepchangelog]: http://keepachangelog.com/en/1.0.0/ -[layers-shield]: https://images.microbadger.com/badges/image/hassioaddons/home-panel.svg [license-shield]: https://img.shields.io/github/license/hassio-addons/addon-home-panel.svg [maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg -[microbadger]: https://microbadger.com/images/hassioaddons/home-panel [midnight-theme]: https://raw.githubusercontent.com/timmo001/home-panel/master/docs/resources/midnight-theme.png [more-info-light]: https://raw.githubusercontent.com/timmo001/home-panel/master/docs/resources/more-info-light.png [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg -[pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/home-panel.svg [radio]: https://raw.githubusercontent.com/timmo001/home-panel/master/docs/resources/radio.png [reddit]: https://reddit.com/r/homeassistant [releases-shield]: https://img.shields.io/github/release/hassio-addons/addon-home-panel.svg From 8698a76cea9ad13bc738fe2a2299fb96d7f6a3f8 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 23 Apr 2019 11:44:01 +0200 Subject: [PATCH 2/2] :fire: Improves add-on configuration (#19) --- home-panel/config.json | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/home-panel/config.json b/home-panel/config.json index d3b4f76..1e4cfb2 100644 --- a/home-panel/config.json +++ b/home-panel/config.json @@ -17,28 +17,27 @@ "hassio_role": "default", "hassio_api": true, "homeassistant_api": true, - "host_network": false, "ports": { "3234/tcp": 3234, "8234/tcp": 8234 }, + "ports_descriptions": { + "3234/tcp": "Home Panel web interface", + "8234/tcp": "Home Panel API" + }, "map": [ "config:rw", "ssl" ], "options": { - "log_level": "info", "ssl": true, "certfile": "fullchain.pem", "keyfile": "privkey.pem" }, "schema": { - "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?", "ssl": "bool", "certfile": "str", "keyfile": "str" - }, - "environment": { - "LOG_FORMAT": "{LEVEL}: {MESSAGE}" } }