From e96239e7dcd499a9b0489d11b9a102f0bd50d142 Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Wed, 26 Apr 2023 20:47:17 -0400 Subject: [PATCH 1/2] fix system screensaver not working --- components/mediaPlayers/AudioPlayer.brs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/mediaPlayers/AudioPlayer.brs b/components/mediaPlayers/AudioPlayer.brs index 9e612373..bea4642b 100644 --- a/components/mediaPlayers/AudioPlayer.brs +++ b/components/mediaPlayers/AudioPlayer.brs @@ -1,6 +1,5 @@ sub init() m.playReported = false - m.top.disableScreenSaver = true m.top.observeField("state", "audioStateChanged") end sub @@ -10,6 +9,8 @@ sub audioStateChanged() reportedPlaybackState = "update" + m.top.disableScreenSaver = (currentState = "playing") + if currentState = "playing" and not m.playReported reportedPlaybackState = "start" m.playReported = true From db50b0f8bb4a6cd00f850cdb9a26e0f7bf0f3dae Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Wed, 26 Apr 2023 20:48:36 -0400 Subject: [PATCH 2/2] prep for release --- Makefile | 2 +- manifest | 2 +- package.json | 2 +- source/static/whatsNew.json | 46 +------------------------------------ 4 files changed, 4 insertions(+), 48 deletions(-) diff --git a/Makefile b/Makefile index 679c9406..e42dd3c5 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ########################################################################## APPNAME = Jellyfin_Roku -VERSION = 1.6.5 +VERSION = 1.6.6 ZIP_EXCLUDE= -x xml/* -x artwork/* -x \*.pkg -x storeassets\* -x keys\* -x \*/.\* -x *.git* -x *.DS* -x *.pkg* -x dist/**\* -x out/**\* diff --git a/manifest b/manifest index 47be7cac..5b8f2356 100644 --- a/manifest +++ b/manifest @@ -3,7 +3,7 @@ title=Jellyfin major_version=1 minor_version=6 -build_version=5 +build_version=6 ### Main Menu Icons / Channel Poster Artwork diff --git a/package.json b/package.json index 3ddaac49..ab03aa01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jellyfin-roku", - "version": "1.6.5", + "version": "1.6.6", "description": "Roku app for Jellyfin media server", "main": "index.js", "devDependencies": { diff --git a/source/static/whatsNew.json b/source/static/whatsNew.json index cd517887..cf24cc2e 100644 --- a/source/static/whatsNew.json +++ b/source/static/whatsNew.json @@ -1,50 +1,6 @@ [ { - "description": "Bug Fix: Rows on home view not refreshing when data has changed", + "description": "Bug Fix: System screensaver not working", "author": "1hitsong" - }, - { - "description": "Bug Fix: Next up section does not populate correctly after watching a TV episode", - "author": "1hitsong" - }, - { - "description": "Bug Fix: Next episode button does not display consistently", - "author": "1hitsong" - }, - { - "description": "Bug Fix: Crash when fallback font API call fails", - "author": "1hitsong" - }, - { - "description": "Core: Fix Jellyfin links in readme", - "author": "cewert" - }, - { - "description": "Bug Fix: Music shuffle not working", - "author": "1hitsong" - }, - { - "description": "Updated View: Add current playback time and song length to the sides of the audio progress bar", - "author": "1hitsong" - }, - { - "description": "Bug Fix: Turn off loop mode when user manually changes song", - "author": "1hitsong" - }, - { - "description": "Core: Enable confirm partner button and setup RALE", - "author": "cewert" - }, - { - "description": "Bug Fix: Clock not displaying on login view", - "author": "cewert" - }, - { - "description": "Core: Add build badge and rework readme content", - "author": "cewert" - }, - { - "description": "Core: Adjust settings to follow latest guidelines", - "author": "sevenrats" } ] \ No newline at end of file