Skip to content

Commit

Permalink
🔖 Update docs & version v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkih committed Jul 3, 2020
1 parent 2178098 commit b82556d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
<small>*HACS is a third party community store and is not included in Home Assistant out of the box.*</small>

### Manual install

Expand All @@ -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
```
Expand All @@ -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
```

Expand All @@ -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
```

Expand Down
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b82556d

Please sign in to comment.