Skip to content

Commit

Permalink
🔖 Update docs & version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkih committed Oct 5, 2019
1 parent 9ef6ef0 commit fd94159
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@ The card works with entities from within the **sensor** domain and displays the

## Install

### Simple install
### HACS

This card is available in [HACS](https://github.com/custom-components/hacs/issues) (Home Assistant Community Store).

### Manual install

1. Download and copy `mini-graph-card-bundle.js` from the [latest release](https://github.com/kalkih/mini-graph-card/releases/latest) into your `config/www` directory.

2. Add a reference to `mini-graph-card-bundle.js` inside your `ui-lovelace.yaml` or at the top of the *raw config editor UI*:

```yaml
resources:
- url: /local/mini-graph-card-bundle.js?v=0.6.0
- url: /local/mini-graph-card-bundle.js?v=0.7.0
type: module
```
Expand All @@ -26,14 +30,14 @@ The card works with entities from within the **sensor** domain and displays the
2. Grab `mini-graph-card-bundle.js`:

```
$ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.6.0/mini-graph-card-bundle.js
$ wget https://github.com/kalkih/mini-graph-card/releases/download/v0.7.0/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.6.0
- url: /local/mini-graph-card-bundle.js?v=0.7.0
type: module
```

Expand All @@ -48,7 +52,7 @@ The card works with entities from within the **sensor** domain and displays the

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

Expand Down
22 changes: 22 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## v0.7.0

### BREAKING CHANGE
Dropped support for **custom_updater**, if you relied on **custom_updater**, consider switching to [**HACS**](https://github.com/custom-components/hacs).

### ADDED
- Custom tap/click action option `tap_action` (#94)
- More default colors (#149) - (@SNoof85)
- Default icons for more device classes (`pressure`, `power` & `signal_strength`) (#155)
- Option `url` to available tap actions (#160) (#164)

### CHANGED
- Color threshold gradient is now also applied to graph fill (vertically) (#112) (#152)
- Current state unit of measurement no longer wraps to the next line and is instead truncated with ellipsis if space is limited

### FIXED
- Not rendering extrema/average info container if not used, eliminates unwanted extra padding
- Invalid legend entry color when color thresholds (#151)
- Invalid graph fill color when color thresholds (#146)
- Preserve aspect ratio of legend indicators (#142)
- README layout and formatting (#162) - (@danstis)

## v0.6.0

### ADDED
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.6.0",
"version": "0.7.0",
"description": "A minimalistic and customizable graph card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
Expand Down

0 comments on commit fd94159

Please sign in to comment.