From 53ba5ebbe64c0eb7c291b26588ba525b3081b734 Mon Sep 17 00:00:00 2001 From: Doug Nelson Date: Mon, 15 Apr 2024 16:48:53 -0500 Subject: [PATCH] April Update 2 v3.3.3 What's New: - App Launcher for Disney+ hotstar (closes #359) - App Launcher for TV2 Play Norway (closes #367) - App Launcher for MSG+ (closes #369) - New French Language Support (closes #370) - App Launcher for JD Farag - App Launcher for BYUtv - Apple App launcher for Ziggo Go (closes #372) - App Launcher for SomaFM (closes #373) Can't see these changes after updating? Visit this link: https://github.com/PRProd/HA-Firemote/wiki/Force-a-Refresh Can't see language translation updates? Visit this link: https://github.com/PRProd/HA-Firemote/wiki/Changing-Your-Home-Assistant-Language --- dist/HA-Firemote.js | 2 +- dist/launcher-buttons.js | 82 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 79 insertions(+), 5 deletions(-) diff --git a/dist/HA-Firemote.js b/dist/HA-Firemote.js index d5aa1ac..be38f7d 100644 --- a/dist/HA-Firemote.js +++ b/dist/HA-Firemote.js @@ -3,7 +3,7 @@ import {launcherData, launcherCSS} from './launcher-buttons.js'; import {rosettaStone} from './language-translations.js'; import {devices} from './supported-devices.js'; -const HAFiremoteVersion = 'v3.3.3b1'; +const HAFiremoteVersion = 'v3.3.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"), console.groupEnd(); diff --git a/dist/launcher-buttons.js b/dist/launcher-buttons.js index 5683aac..9f4ce60 100644 --- a/dist/launcher-buttons.js +++ b/dist/launcher-buttons.js @@ -1000,6 +1000,19 @@ const launcherData = { }, + "disney-plus-hotstar": { + "button": '', + "friendlyName": "Disney + hotstar", + "className": "disneyPlusHotstarButton", + "deviceFamily": ["amazon-fire"], + "amazon-fire": { + "appName": "Disney+ Hotstar", + "androidName": "in.startv.hotstar", + "adbLaunchCommand": "adb shell am start -n in.startv.hotstar/com.hotstar.MainActivity", + }, + }, + + "disney-plus-middle-east": { "button": '', "friendlyName": "Disney + Middle East", @@ -4363,6 +4376,23 @@ const launcherData = { }, + "somafm": { + "button": '', + "friendlyName": "SomaFM", + "className": "somaFMButton", + "deviceFamily": ["amazon-fire", "roku"], + "amazon-fire": { + "appName": "com.somafm.tv", + "androidName": "com.somafm.tv", + "adbLaunchCommand": "adb shell am start -n com.somafm.tv/tv.somafm.com.somafm.ui.tv.TvBrowseActivity", + }, + "roku": { + "appName": 'SomaFM', + "app-id": 2941, + }, + }, + + "sony-liv": { "button": '', "button-round": '', @@ -5260,6 +5290,17 @@ const launcherData = { }, + "tv2-play-norway": { + "button": '', + "friendlyName": "TV 2 Play (Norway)", + "className": "tv2PlayNorwayButton", + "deviceFamily": ["apple-tv"], + "apple-tv": { + "appName": "TV 2 Play", + }, + }, + + "tv4-play": { "button": '', "friendlyName": "TV4 Play", @@ -5970,10 +6011,31 @@ const launcherData = { "button": '', "friendlyName": "Ziggo Go", "className": "ziggoGoButton", - "appName": "com.ziggo.tv", - "androidName": "com.ziggo.tv", - "adbLaunchCommand": "adb shell am start -n com.ziggo.tv/com.libertyglobal.horizonx.MainActivity", - "deviceFamily": ["amazon-fire", "chromecast", "nvidia-shield", "xiaomi"],}, + "deviceFamily": ["amazon-fire", "apple-tv", "chromecast", "nvidia-shield", "xiaomi"], + "amazon-fire": { + "appName": "com.ziggo.tv", + "androidName": "com.ziggo.tv", + "adbLaunchCommand": "adb shell am start -n com.ziggo.tv/com.libertyglobal.horizonx.MainActivity", + }, + "apple-tv": { + "appName" : "Ziggo GO TV", + }, + "chromecast": { + "appName": "com.ziggo.tv", + "androidName": "com.ziggo.tv", + "adbLaunchCommand": "adb shell am start -n com.ziggo.tv/com.libertyglobal.horizonx.MainActivity", + }, + "nvidia-shield": { + "appName": "com.ziggo.tv", + "androidName": "com.ziggo.tv", + "adbLaunchCommand": "adb shell am start -n com.ziggo.tv/com.libertyglobal.horizonx.MainActivity", + }, + "xiaomi": { + "appName": "com.ziggo.tv", + "androidName": "com.ziggo.tv", + "adbLaunchCommand": "adb shell am start -n com.ziggo.tv/com.libertyglobal.horizonx.MainActivity", + }, + }, "function-app-switch": { @@ -6508,6 +6570,10 @@ const launcherCSS = ` fill: #0c2661 !important; } + .disneyPlusHotstarButton { + background: linear-gradient(0deg, rgba(27,91,191,1) 0%, rgba(6,9,43,1) 100%); + } + .dogTVButton { background: #f58021; } @@ -7183,6 +7249,10 @@ const launcherCSS = ` background: #000; } + .somaFMButton { + background: #000; + } + .sonyLivButton { background: #000; } @@ -7363,6 +7433,10 @@ const launcherCSS = ` background: #000523; } + .tv2PlayNorwayButton { + background: #6f02ff; + } + .tv4PlayButton { background: #e0001c; }