Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FL550 committed Dec 11, 2020
1 parent 5249309 commit 275e8cf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion dist/spotify-card.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/spotify-card.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spotify-card",
"author": "Niklas Fondberg <[email protected]>, Max Fermor (FL550)",
"version": "2.3.4",
"author": "Niklas Fondberg <[email protected]>, Max Fermor (FL550) <[email protected]>",
"version": "2.3.5",
"description": "Spotify playlist card",
"keywords": [
"home-assistant",
Expand Down
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const CARD_VERSION = '2.3.4';
export const CARD_VERSION = '2.3.5';
3 changes: 2 additions & 1 deletion src/spotify-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export class SpotifyCard extends LitElement {
return this._spotify_state?.attributes?.volume_level * 100;
}

protected shouldUpdate(changedProperties: Map<string | number | symbol, unknown>): any {
protected shouldUpdate(changedProperties: Map<string | number | symbol, unknown>): any {
let scheduleUpdate = true;
changedProperties.forEach((_oldValue, propName) => {
// console.log(`${propName} changed. oldValue: ${_oldValue}`);
Expand Down Expand Up @@ -669,6 +669,7 @@ export class SpotifyCard extends LitElement {
padding: 0.5em;
display: flex;
flex-direction: column;
overflow: auto;
}
hui-warning {
Expand Down

0 comments on commit 275e8cf

Please sign in to comment.