diff --git a/components/HomeScene.brs b/components/HomeScene.brs index 972b833..23f5d85 100644 --- a/components/HomeScene.brs +++ b/components/HomeScene.brs @@ -32,7 +32,7 @@ end sub function ShowView(selectedIndex as integer) viewToShow = "NTunesScene" - if selectedIndex = 0 then + if selectedIndex = 0 or selectedIndex = 1 then updateTheme("0x121212FF") end if diff --git a/components/HorizonsScene.brs b/components/HorizonsScene.brs index 92785bf..fb3b9e4 100644 --- a/components/HorizonsScene.brs +++ b/components/HorizonsScene.brs @@ -17,7 +17,7 @@ sub OnWasShown() m.left_side_row_2_status = m.top.findNode("left_side_row_2_status") audiocontent = createObject("RoSGNode", "ContentNode") - audiocontent.url = "https://cdn3.wdwnt.com/music/Epcot%20-%20Horizons%20(Full%20Audio).mp3" + audiocontent.url = "https://appcdn.wdwnt.com/roku/music/Epcot%20-%20Horizons%20(Full%20Audio).mp3" m.audio = m.top.findNode("audio") m.audio.content = audiocontent diff --git a/components/NTunesScene.brs b/components/NTunesScene.brs index f392a3d..8968baa 100644 --- a/components/NTunesScene.brs +++ b/components/NTunesScene.brs @@ -21,8 +21,6 @@ function setUpLabels() as void m.current_track_artist_name = m.top.findNode("current_track_artist_name") m.current_show_name = m.top.findNode("current_show_name") m.current_show_image_path = m.top.findNode("current_show_image_path") - m.next_track_title = m.top.findNode("next_track_title") - m.next_track_artist_name = m.top.findNode("next_track_artist_name") m.audio_indicator = m.top.findNode("audio_indicator") end function @@ -40,7 +38,7 @@ end function function setUpAudio() as void audiocontent = createObject("RoSGNode", "ContentNode") - audiocontent.url = "https://wdwnt.out.airtime.pro/wdwnt_a" + audiocontent.url = "https://streaming.live365.com/a31769" m.audio = m.top.findNode("audio_player") m.audio.content = audiocontent @@ -79,6 +77,4 @@ sub onCurrentInfoChanged() m.current_track_artist_name.text = current_info.current_track_artist_name m.current_show_name.text = current_info.current_show_name m.current_show_image_path.uri = current_info.current_show_image_path - m.next_track_title.text = current_info.next_track_title - m.next_track_artist_name.text = current_info.next_track_artist_name end sub diff --git a/components/NTunesScene.xml b/components/NTunesScene.xml index e18d58c..f569b09 100644 --- a/components/NTunesScene.xml +++ b/components/NTunesScene.xml @@ -2,88 +2,67 @@