Skip to content

Commit

Permalink
Update version (4.2.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
benct committed Mar 29, 2021
1 parent a58005d commit ad8c639
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.

## 4.2.0

**Added:**
- Support `fire-dom-event` custom action (#173)
- Support haptic feedback configuration on actions (#164)
- Support custom entity on `more-info` action (#161)

**Changed:**
- Use localization on `attribute` values (#178)
- Render disabled toggles on unavailable state (#160)
- Improve state display of `input_dateime` entities (#140)

**Fixed:**
- Incorrect rendering of `unit` when `false` (#145)

## 4.1.1

**Fixed:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ to your `<config>/www/` folder and add the following to the `configuration.yaml`
```yaml
lovelace:
resources:
- url: /local/multiple-entity-row.js?v=4.1.1
- url: /local/multiple-entity-row.js?v=4.2.0
type: module
```

Expand Down
2 changes: 1 addition & 1 deletion multiple-entity-row.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "multiple-entity-row",
"version": "4.1.1",
"version": "4.2.0",
"description": "Show multiple entity states, attributes and icons on entity rows in Home Assistant's Lovelace UI",
"keywords": [
"home-assistant",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -9,7 +9,7 @@ const LitElement =
const { html, css } = LitElement.prototype;

console.info(
'%c MULTIPLE-ENTITY-ROW %c 4.1.1 ',
'%c MULTIPLE-ENTITY-ROW %c 4.2.0 ',
'color: cyan; background: black; font-weight: bold;',
'color: darkblue; background: white; font-weight: bold;'
);
Expand Down
4 changes: 2 additions & 2 deletions tracker.json
@@ -1,7 +1,7 @@
{
"multiple-entity-row": {
"updated_at": "2020-11-16",
"version": "4.1.1",
"updated_at": "2021-03-29",
"version": "4.2.0",
"remote_location": "https://raw.githubusercontent.com/benct/lovelace-multiple-entity-row/master/multiple-entity-row.js",
"visit_repo": "https://github.com/benct/lovelace-multiple-entity-row",
"changelog": "https://github.com/benct/lovelace-multiple-entity-row/blob/master/CHANGELOG.md"
Expand Down

0 comments on commit ad8c639

Please sign in to comment.