Skip to content

Commit

Permalink
September 2024 launcher updates
Browse files Browse the repository at this point in the history
v4.0.3

What's new:
 - App launcher for WNBA (closes #496)
 - App launcher for B1G+ (closes #497)
 - App launcher for Bally Sports (closes #498)

What's changed:
 - Better filtering for Amazon Fire entities in UI

Can't see these changes after updating? Visit this link:
https://github.com/PRProd/HA-Firemote/wiki/Force-a-Refresh
  • Loading branch information
PRProd committed Sep 5, 2024
1 parent bb54448 commit f097056
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dist/HA-Firemote.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const HAFiremoteVersion = 'v4.0.2';
const HAFiremoteVersion = 'v4.0.3';

import {LitElement, html, css, unsafeHTML, unsafeCSS, styleMap} from './lit/lit-all.min.js';
import {launcherData, launcherCSS} from "./launcher-buttons.js?version=v4.0.2";
import {rosettaStone} from './language-translations.js?version=v4.0.2';
import {devices} from './supported-devices.js?version=v4.0.2';
import {launcherData, launcherCSS} from "./launcher-buttons.js?version=v4.0.3";
import {rosettaStone} from './language-translations.js?version=v4.0.3';
import {devices} from './supported-devices.js?version=v4.0.3';

console.groupCollapsed("%c 🔥 FIREMOTE-CARD 🔥 %c "+HAFiremoteVersion+" installed ", "color: orange; font-weight: bold; background: black", "color: green; font-weight: bold;"),
console.log("Readme:", "https://github.com/PRProd/HA-Firemote"),
Expand Down Expand Up @@ -7054,7 +7054,7 @@ class FiremoteCard extends LitElement {


// uncaught button presses land here
console.log('unhandled '+actionType+' action for '+buttonID);
//console.log('unhandled '+actionType+' action for '+buttonID);
return;


Expand Down Expand Up @@ -7239,7 +7239,7 @@ class FiremoteCardEditor extends LitElement {
this.translateToUsrLang('Entity') + ' Roku Media Player' : 'Roku Media Player '+ this.translateToUsrLang('Entity');
}
else {
mediaPlayerEntities = this.getEntitiesByPlatform('androidtv');
mediaPlayerEntities = this.getMediaPlayerEntitiesByPlatform('androidtv');
heading = this.hass.config.language == 'he' || this.hass.config.language == 'fr' ?
this.translateToUsrLang('Entity') + ' Android Debug Bridge' : 'Android Debug Bridge '+ this.translateToUsrLang('Entity');
}
Expand Down
95 changes: 95 additions & 0 deletions dist/launcher-buttons.js

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

0 comments on commit f097056

Please sign in to comment.