Skip to content

Commit

Permalink
v5.9.5
Browse files Browse the repository at this point in the history
Fix the icons problem in Firefox
  • Loading branch information
dckiller51 committed Sep 25, 2023
1 parent 21472d4 commit ecf4def
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## v5.9.5

- Fix the icons problem in Firefox [[#45](https://github.com/dckiller51/lovelace-body-miscale-card/issues/45)]

## v5.9.4

- added Hungarian language support (thank you @v1k70rk4)
Expand Down
2 changes: 1 addition & 1 deletion dist/body-miscale-card.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/body-miscale-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ export class BodyMiScaleCard extends LitElement implements LovelaceCard {
: data.icon;
return html`<ha-icon
class="image"
style="-webkit-mask-box-image: url('${icon}'); ${this.config.styles.iconbody}"
style="-webkit-mask-image: url('${icon}');-webkit-mask-size: 24px; ${this.config.styles.iconbody}"
></ha-icon>`;
}

Expand Down
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { localize } from './localize/localize';

export const CARD_VERSION = '5.9.4';
export const CARD_VERSION = '5.9.5';

export const states = {
status: {
Expand Down
4 changes: 2 additions & 2 deletions tracker.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"body-miscale-card": {
"updated_at": "2023-09-15",
"version": "v5.9.4",
"updated_at": "2023-09-25",
"version": "v5.9.5",
"remote_location": "https://raw.githubusercontent.com/dckiller51/lovelace-body-miscale-card/master/dist/body-miscale-card.js",
"visit_repo": "https://github.com/dckiller51/lovelace-body-miscale-card",
"changelog": "https://github.com/dckiller51/lovelace-body-miscale-card/blob/master/CHANGELOG.md"
Expand Down

0 comments on commit ecf4def

Please sign in to comment.