From b82556d7a5291b58a3fc88ba0892c73eca0df533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Kihlstr=C3=B6m?= Date: Fri, 3 Jul 2020 22:45:57 +0200 Subject: [PATCH] :bookmark: Update docs & version v0.9.4 --- README.md | 14 +++++++------- changelog.md | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 00969f6..945fcae 100755 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ # Lovelace Mini Graph Card A minimalistic and customizable graph card for [Home Assistant](https://github.com/home-assistant/home-assistant) Lovelace UI. -The card works with entities from within the **sensor** domain and displays the sensors current state as well as a line graph representation of the history. +The card works with entities from within the **sensor** & **binary_sensor** domain and displays the sensors current state as well as a line graph representation of the history. ![Preview](https://user-images.githubusercontent.com/457678/52977264-edf34980-33cc-11e9-903b-cee43b307ed8.png) ## Install -### HACS +### HACS (recommended) This card is available in [HACS](https://hacs.xyz/) (Home Assistant Community Store). -HACS is a 3rd party Community Store, NOT the one you can already find under "Supervisor" in Home Assistant! You can find more info about it with the link above. +*HACS is a third party community store and is not included in Home Assistant out of the box.* ### Manual install @@ -20,7 +20,7 @@ HACS is a 3rd party Community Store, NOT the one you can already find under "Sup ```yaml resources: - - url: /local/mini-graph-card-bundle.js?v=0.9.3 + - url: /local/mini-graph-card-bundle.js?v=0.9.4 type: module ``` @@ -31,14 +31,14 @@ HACS is a 3rd party Community Store, NOT the one you can already find under "Sup 2. Grab `mini-graph-card-bundle.js`: ``` - $ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.9.3/mini-graph-card-bundle.js + $ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.9.4/mini-graph-card-bundle.js ``` 3. Add a reference to `mini-graph-card-bundle.js` inside your `ui-lovelace.yaml`: ```yaml resources: - - url: /local/mini-graph-card-bundle.js?v=0.9.3 + - url: /local/mini-graph-card-bundle.js?v=0.9.4 type: module ``` @@ -53,7 +53,7 @@ HACS is a 3rd party Community Store, NOT the one you can already find under "Sup ```yaml resources: - - url: /local/mini-graph-card-bundle.js?v=0.9.3 + - url: /local/mini-graph-card-bundle.js?v=0.9.4 type: module ``` diff --git a/changelog.md b/changelog.md index 186dd2f..e816bed 100755 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,18 @@ +## v0.9.4 + +### ✨ NEW +- Added soft bound support for lower & upper bounds #114 (#330) @Silencer2K +- Added delta option in aggregate_func (#329) @PierreB49 +- Added `value_factor` option, to scale value shown in state label (#362) @dzikimarian +- Faster history & decreased data usage #373 (#392) + +### 🔨 FIXED +- Fixed incorrect value for the first point #289 (#327) @maxwroc +- Reduce white space when extrema isn't enabled #320 (#325) +- Check for undefined hass before accessing it (#359) +- Readme typos & improvements (#340) (#356) @EpicLPer @mikalauskas + + ## v0.9.3 ### FIXED