Skip to content

Commit 2ddfcf4

Browse files
committed
Update version (4.3.0)
1 parent ae2e937 commit 2ddfcf4

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

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

4+
## 4.3.0
5+
6+
**Added:**
7+
- Support hiding main entity name with `name: false` (#131, #134, #179)
8+
- Locale-aware number formatting of state and attribute values (#208)
9+
- Locale-aware number formatting when using `precision` format option (#212)
10+
11+
**Changed:**
12+
- Bundle `Lit` in card rather than importing from HA (#192)
13+
- Simplify and improve handling of entity state display
14+
15+
**Fixed:**
16+
- Incorrect triggering of `more-info` dialog when clicking additional entities (#216, #217)
17+
418
## 4.2.0
519

620
**Added:**

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Show multiple entity states, attributes and icons on entity rows in Home Assista
77
[![GH-last-commit](https://img.shields.io/github/last-commit/benct/lovelace-multiple-entity-row.svg?style=flat-square)](https://github.com/benct/lovelace-multiple-entity-row/commits/master)
88
[![GH-code-size](https://img.shields.io/github/languages/code-size/benct/lovelace-multiple-entity-row.svg?color=red&style=flat-square)](https://github.com/benct/lovelace-multiple-entity-row)
99
[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg?style=flat-square)](https://github.com/hacs)
10+
<a href="https://www.buymeacoffee.com/benct"><img src="https://cdn.buymeacoffee.com/buttons/default-yellow.png" height="20"></a>
1011

1112
**NOTE:** This is not a standalone lovelace card, but a row element for the [entities](https://www.home-assistant.io/lovelace/entities/) card.
1213

@@ -17,7 +18,7 @@ to your `<config>/www/` folder and add the following to the `configuration.yaml`
1718
```yaml
1819
lovelace:
1920
resources:
20-
- url: /local/multiple-entity-row.js?v=4.2.0
21+
- url: /local/multiple-entity-row.js?v=4.3.0
2122
type: module
2223
```
2324

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.2.0",
3+
"version": "4.3.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
@@ -6,7 +6,7 @@ import { getEntityIds, hasConfigOrEntitiesChanged, hasGenericSecondaryInfo, hide
66
import { style } from './styles';
77

88
console.info(
9-
'%c MULTIPLE-ENTITY-ROW %c 4.2.0 ',
9+
'%c MULTIPLE-ENTITY-ROW %c 4.3.0 ',
1010
'color: cyan; background: black; font-weight: bold;',
1111
'color: darkblue; background: white; font-weight: bold;'
1212
);

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": "2021-03-29",
4-
"version": "4.2.0",
3+
"updated_at": "2021-12-17",
4+
"version": "4.3.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)