diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fe8c05..0cec161 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.1.0 + +**Added:** +- Support for battery charging state or attribute (#4) + +**Changed:** +- Improve unknown/unavailable battery state display +- Allow disabling/hiding `unit` with value `false` + ## 1.0.0 - **Initial release** diff --git a/README.md b/README.md index 4b83680..f5ceabd 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ to your `/www/` folder and add the following to the `configuration.yaml` ```yaml lovelace: resources: - - url: /local/battery-entity-row.js?v=1.0.0 + - url: /local/battery-entity-row.js?v=1.1.0 type: module ``` diff --git a/battery-entity-row.js b/battery-entity-row.js index fdb3bc5..b68e8e3 100644 --- a/battery-entity-row.js +++ b/battery-entity-row.js @@ -1,6 +1,6 @@ ((LitElement) => { console.info( - '%c BATTERY-ENTITY-ROW %c 1.0.0 ', + '%c BATTERY-ENTITY-ROW %c 1.1.0 ', 'color: cyan; background: black; font-weight: bold;', 'color: darkblue; background: white; font-weight: bold;', ); diff --git a/tracker.json b/tracker.json index b0d7867..8323d16 100644 --- a/tracker.json +++ b/tracker.json @@ -1,7 +1,7 @@ { "battery-entity-row": { - "updated_at": "2020-10-14", - "version": "1.0.0", + "updated_at": "2020-10-22", + "version": "1.1.0", "remote_location": "https://raw.githubusercontent.com/benct/lovelace-battery-entity-row/master/battery-entity-row.js", "visit_repo": "https://github.com/benct/lovelace-battery-entity-row", "changelog": "https://github.com/benct/lovelace-battery-entity-row/blob/master/CHANGELOG.md"