🎉 Release of add-on Glances 0.2.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-02-27 18:08:28 +00:00
parent 0232268a62
commit e6c3138ca1
4 changed files with 28 additions and 8 deletions

View file

@ -654,10 +654,10 @@ SOFTWARE.
[ftp-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[ftp-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[ftp-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-glances]: https://github.com/hassio-addons/addon-glances/tree/v0.1.0
[addon-doc-glances]: https://github.com/hassio-addons/addon-glances/blob/v0.1.0/README.md
[addon-glances]: https://github.com/hassio-addons/addon-glances/tree/v0.2.0
[addon-doc-glances]: https://github.com/hassio-addons/addon-glances/blob/v0.2.0/README.md
[glances-issue]: https://github.com/hassio-addons/addon-glances/issues
[glances-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[glances-version-shield]: https://img.shields.io/badge/version-v0.2.0-blue.svg
[glances-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/glances.svg
[glances-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[glances-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1 +1,17 @@
🎉 Initial add-on release!
[Full Changelog][changelog]
This release reduces the default CPU usage by the add-on significantly (75-90%!).
It now disables (the CPU intensive) process information by default but can be enabled again in the add-on options. Also added the possibility for a custom refresh interval, which defaults to 10 seconds.
### Changed
- Upgrades add-on base image to 2.3.2
- Adds support for disabling process info
- Adds support for setting a custom refresh interval
- Removed a lorem ipsum leftover
[changelog]: https://github.com/hassio-addons/addon-glances/compare/v0.1.0...v0.2.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck

View file

@ -42,13 +42,13 @@ If you are more interested in stable releases of our add-ons:
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-glances/blob/v0.1.0/README.md
[docs]: https://github.com/hassio-addons/addon-glances/blob/v0.2.0/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-glances/97102?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-glances/tree/v0.1.0
[release-shield]: https://img.shields.io/badge/version-v0.2.0-blue.svg
[release]: https://github.com/hassio-addons/addon-glances/tree/v0.2.0
[screenshot]: https://github.com/hassio-addons/addon-glances/raw/master/images/screenshot.png

View file

@ -1,6 +1,6 @@
{
"name": "Glances",
"version": "0.1.0",
"version": "0.2.0",
"slug": "glances",
"description": "A cross-platform system monitoring tool",
"url": "https://github.com/hassio-addons/addon-glances",
@ -29,6 +29,8 @@
"apparmor": false,
"options": {
"log_level": "info",
"process_info": false,
"refresh_time": 10,
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
@ -45,6 +47,8 @@
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"process_info": "bool",
"refresh_time": "int",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",