⬆️ Updating add-on Log Viewer to 26b3a61

This commit is contained in:
Community Hass.io Add-ons Bot 2019-04-20 13:00:50 +00:00
parent b8927d907b
commit 6c8c269c0e
4 changed files with 24 additions and 45 deletions

View file

@ -1,6 +1,12 @@
# Changelog since v0.4.1
2019/03/31 21:28 UTC - [5a4c91e](https://github.com/hassio-addons/addon-log-viewer/commit/5a4c91e6f389f2c27c794f3581bcc92446c8c48a) by [@allanpersson](https://github.com/allanpersson)
2019/04/20 12:47 UTC - [26b3a61](https://github.com/hassio-addons/addon-log-viewer/commit/26b3a61cae09a6c7e617527f9c1acf44aabddb6a) by [@frenck](https://github.com/frenck)
> :sparkles: Adds Hassio Ingress support
2019/04/20 12:47 UTC - [549575d](https://github.com/hassio-addons/addon-log-viewer/commit/549575d5ea0f887c02f0edaf2aa9f2b3e8bac671) by [@frenck](https://github.com/frenck)
> :arrow_up: Upgrades base image to v3.1.0
2019/04/20 12:47 UTC - [5a4c91e](https://github.com/hassio-addons/addon-log-viewer/commit/5a4c91e6f389f2c27c794f3581bcc92446c8c48a) by [@allanpersson](https://github.com/allanpersson)
> Update README.md
Adding panel_iframe section

View file

@ -38,10 +38,10 @@ If you are more interested in stable releases of our add-ons:
[buymeacoffee]: https://www.buymeacoffee.com/dale3h
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-log-viewer/blob/5a4c91e/README.md
[docs]: https://github.com/hassio-addons/addon-log-viewer/blob/26b3a61/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-log-viewer/64377?u=dale3h
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-5a4c91e-blue.svg
[release]: https://github.com/hassio-addons/addon-log-viewer/tree/5a4c91e
[release-shield]: https://img.shields.io/badge/version-26b3a61-blue.svg
[release]: https://github.com/hassio-addons/addon-log-viewer/tree/26b3a61

View file

@ -1,10 +1,14 @@
{
"name": "Log Viewer",
"version": "5a4c91e",
"version": "26b3a61",
"slug": "logviewer",
"description": "Browser-based log utility for Hass.io",
"url": "https://github.com/hassio-addons/addon-log-viewer",
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]",
"startup": "application",
"ingress": true,
"ingress_port": 1337,
"homeassistant": "0.91.2",
"arch": [
"aarch64",
"amd64",
@ -12,14 +16,16 @@
"armv7",
"i386"
],
"webui": "[PROTO:ssl]://[HOST]:[PORT:4277]",
"homeassistant_api": true,
"hassio_api": true,
"hassio_role": "default",
"auth_api": true,
"boot": "auto",
"host_network": false,
"ports": {
"4277/tcp": 4277
"80/tcp": null
},
"ports_description": {
"80/tcp": "Web interface (Not required for Hass.io Ingress)"
},
"map": [
"config",
@ -27,48 +33,15 @@
"ssl"
],
"options": {
"username": "",
"password": "",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"filters": [
{
"keyword": "ERROR",
"style": "color: red; font-weight: bold;"
},
{
"keyword": "WARN",
"style": "color: yellow;"
},
{
"keyword": "INFO",
"style": "color: limegreen;"
},
{
"keyword": "DEBUG",
"style": "color: cyan;"
},
{
"keyword": "TRACE",
"style": "color: blue;"
}
]
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"username": "str",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"filters": [
{
"keyword": "str",
"style": "str"
}
],
"i_like_to_be_pwned": "bool?",
"leave_front_door_open": "bool?"
},
"image": "hassioaddons/log-viewer-{arch}"