Skip to content

Commit ad8c639

Browse files
committed
Update version (4.2.0)
1 parent a58005d commit ad8c639

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 4.2.0
5+
6+
**Added:**
7+
- Support `fire-dom-event` custom action (#173)
8+
- Support haptic feedback configuration on actions (#164)
9+
- Support custom entity on `more-info` action (#161)
10+
11+
**Changed:**
12+
- Use localization on `attribute` values (#178)
13+
- Render disabled toggles on unavailable state (#160)
14+
- Improve state display of `input_dateime` entities (#140)
15+
16+
**Fixed:**
17+
- Incorrect rendering of `unit` when `false` (#145)
18+
419
## 4.1.1
520

621
**Fixed:**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to your `<config>/www/` folder and add the following to the `configuration.yaml`
1717
```yaml
1818
lovelace:
1919
resources:
20-
- url: /local/multiple-entity-row.js?v=4.1.1
20+
- url: /local/multiple-entity-row.js?v=4.2.0
2121
type: module
2222
```
2323

multiple-entity-row.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "multiple-entity-row",
3-
"version": "4.1.1",
3+
"version": "4.2.0",
44
"description": "Show multiple entity states, attributes and icons on entity rows in Home Assistant's Lovelace UI",
55
"keywords": [
66
"home-assistant",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const LitElement =
99
const { html, css } = LitElement.prototype;
1010

1111
console.info(
12-
'%c MULTIPLE-ENTITY-ROW %c 4.1.1 ',
12+
'%c MULTIPLE-ENTITY-ROW %c 4.2.0 ',
1313
'color: cyan; background: black; font-weight: bold;',
1414
'color: darkblue; background: white; font-weight: bold;'
1515
);

tracker.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"multiple-entity-row": {
3-
"updated_at": "2020-11-16",
4-
"version": "4.1.1",
3+
"updated_at": "2021-03-29",
4+
"version": "4.2.0",
55
"remote_location": "https://raw.githubusercontent.com/benct/lovelace-multiple-entity-row/master/multiple-entity-row.js",
66
"visit_repo": "https://github.com/benct/lovelace-multiple-entity-row",
77
"changelog": "https://github.com/benct/lovelace-multiple-entity-row/blob/master/CHANGELOG.md"

0 commit comments

Comments
 (0)