Skip to content

Commit

Permalink
Merge pull request #1233 from cewert/hotfix-screensaver-release
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert authored Apr 27, 2023
2 parents a8a2928 + db50b0f commit e70e55f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 49 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/**\*

Expand Down
3 changes: 2 additions & 1 deletion components/mediaPlayers/AudioPlayer.brs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
sub init()
m.playReported = false
m.top.disableScreenSaver = true
m.top.observeField("state", "audioStateChanged")
end sub

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
title=Jellyfin
major_version=1
minor_version=6
build_version=5
build_version=6

### Main Menu Icons / Channel Poster Artwork

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
46 changes: 1 addition & 45 deletions source/static/whatsNew.json
Original file line number Diff line number Diff line change
@@ -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"
}
]

0 comments on commit e70e55f

Please sign in to comment.