Skip to content

Commit

Permalink
🔖 Update docs & version v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkih committed Jan 6, 2021
1 parent b5e8714 commit d5e7498
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This card is available in [HACS](https://hacs.xyz/) (Home Assistant Community St
2. Grab `mini-graph-card-bundle.js`:

```
$ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.9.4/mini-graph-card-bundle.js
$ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.10.0/mini-graph-card-bundle.js
```

3. Add the resource reference as decribed below.
Expand All @@ -37,7 +37,7 @@ If you configure Lovelace via YAML, add a reference to `mini-graph-card-bundle.j

```yaml
resources:
- url: /local/mini-graph-card-bundle.js?v=0.9.4
- url: /local/mini-graph-card-bundle.js?v=0.10.0
type: module
```
Expand All @@ -59,7 +59,7 @@ Else, if you prefer the graphical editor, use the menu to add the resource:

```yaml
resources:
- url: /local/mini-graph-card-bundle.js?v=0.9.4
- url: /local/mini-graph-card-bundle.js?v=0.10.0
type: module
```

Expand Down Expand Up @@ -109,7 +109,7 @@ Else, if you prefer the graphical editor, use the menu to add the resource:
| smoothing | boolean | `true` | v0.8.0 | Whether to make graph line smooth.
| state_map | [state map object](#state-map-object) | | v0.8.0 | List of entity states to convert (order matters as position becomes a value on the graph).
| value_factor | number | 0 | v0.9.4 | Scale value by order of magnitude (e.g. convert Watts to kilo Watts), use negative value to scale down.
| logarithmic | boolean | `false` | TBD | Use a Logarithmic scale for the graph
| logarithmic | boolean | `false` | v0.10.0 | Use a Logarithmic scale for the graph


#### Entities object
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.10.0

### ✨ NEW
- Added logarithmic scale option (#468) @Hypfer
- Make card appear in lovelace card picker #493 (#492) @dcs8
- Display card documentation in HACS @cgoette

### 🔨 FIXED
- Fix initial graph load when using 'update_interval' option #465 (#452) @PronkMedia

### 📝 DOCUMENTATION
- Refine & improve manual installation instructions (#416) @theFork
- Reorganize examples (#397) @agneevX
- Spelling fixes in docs (#497) @scop

## v0.9.4

### ✨ NEW
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mini-graph-card",
"version": "0.9.4",
"version": "0.10.0",
"description": "A minimalistic and customizable graph card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
Expand Down

0 comments on commit d5e7498

Please sign in to comment.