File tree 4 files changed +37
-28
lines changed
4 files changed +37
-28
lines changed Original file line number Diff line number Diff line change @@ -15,20 +15,20 @@ sub init()
15
15
"fontUri" : "font:SystemFontFile" ,
16
16
"color" : "#EFEFEFFF"
17
17
},
18
- "url " : {
18
+ "author " : {
19
19
"fontSize" : 27 ,
20
20
"fontUri" : "font:SystemFontFile" ,
21
- "color" : "#00a4dcFF "
21
+ "color" : "0xff6867FF "
22
22
}
23
23
}
24
24
25
- ' empty line for spacing
26
- textLine = m .content .CreateChild ("StdDlgMultiStyleTextItem" )
27
- textLine .text = ""
25
+ whatsNewList = ParseJSON (ReadAsciiFile ("pkg:/source/static/whatsNew/details.json" ))
28
26
29
- textLine = m .content .CreateChild ("StdDlgMultiStyleTextItem" )
30
- textLine .drawingStyles = dialogStyles
31
- textLine .text = tr ("To view a complete list of changes visit" ) + " <url>https://github.com/jellyfin/jellyfin-roku/releases/tag/v" + appVersion + "</url>"
27
+ for each item in whatsNewList
28
+ textLine = m .content .CreateChild ("StdDlgMultiStyleTextItem" )
29
+ textLine .drawingStyles = dialogStyles
30
+ textLine .text = "• " + item .description + " <author>" + item .author + "</author>"
31
+ end for
32
32
end sub
33
33
34
34
sub setPalette ()
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ sub init()
12
12
13
13
main = m .top .findNode ("main_group" )
14
14
main .translation = [96 , 175 ]
15
- overview = m .top .findNode ("overview" )
16
- overview .width = 1920 - 96 - 300 - 96 - 30
15
+ m .overview = m .top .findNode ("overview" )
17
16
18
17
m .details = m .top .findNode ("details" )
19
18
m .tagline = m .top .findNode ("tagline" )
@@ -103,12 +102,14 @@ sub itemContentChanged()
103
102
m .top .id = itemData .id
104
103
105
104
posterUrl = item .posterURL
105
+ m .overview .width = 1400
106
106
107
107
' Really need to update TvShowDetails to include the options for changing audio tracks etc
108
108
' so that we can use that instead of MovieDetails when a user clicks on a TV Show in "Next Up"
109
109
if LCase (itemData .type ) = "episode" and IsValid (itemData .ImageTags )
110
110
m .moviePoster .width = 464
111
111
m .moviePoster .height = 261
112
+ m .overview .width = 1000
112
113
params = { "Tag" : itemData .ImageTags .Primary , "maxHeight" : 261 , "maxWidth" : 464 }
113
114
posterUrl = ImageURL (itemData .id , "Primary" , params )
114
115
end if
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ [
2
+ {
3
+ "description" : " Next Up behavior update for TV Shows" ,
4
+ "author" : " Renbo2024"
5
+ },
6
+ {
7
+ "description" : " Hide Time of Completion OSD for Hide Clocks setting" ,
8
+ "author" : " Renbo2024"
9
+ },
10
+ {
11
+ "description" : " Add channel number to Live TV channel title" ,
12
+ "author" : " Michael Cresswell"
13
+ },
14
+ {
15
+ "description" : " Enable OSD for intro videos" ,
16
+ "author" : " sivart73"
17
+ },
18
+ {
19
+ "description" : " Show user icon for saved users" ,
20
+ "author" : " SonicMastr"
21
+ },
22
+ {
23
+ "description" : " Add Live TV Channels, People and Playlists to search" ,
24
+ "author" : " jimdogx"
25
+ }
26
+ ]
You can’t perform that action at this time.
0 commit comments