Commit Graph

1484 Commits

Author SHA1 Message Date
Nick Wallace
26d9360fd3
Update Home Screen to Respect User Preferences (#553) 2022-05-24 17:23:42 +01:00
1hitsong
60be572753 Add spinner during Play Album loading 2022-05-23 19:55:11 -04:00
1hitsong
3ee81682b7 Format code 2022-05-23 19:55:11 -04:00
1hitsong
eb0121fdf6 Force width on backdrop. Fix NowPlaying title with invalid data 2022-05-23 19:55:11 -04:00
1hitsong
d8b5ba06dd List both artists and albums as direct children to music 2022-05-23 19:55:11 -04:00
1hitsong
9a69272f62 Resolve issue with artist/song library playback 2022-05-23 19:55:11 -04:00
1hitsong
2d0743f935 Code Cleanup 2022-05-23 19:55:11 -04:00
1hitsong
3252210f40 Remove unused variables 2022-05-23 19:55:11 -04:00
1hitsong
671f345422 Add background image to NowPlaying scene 2022-05-23 19:55:11 -04:00
1hitsong
e20ad1017e Remove blank lines 2022-05-23 19:55:11 -04:00
1hitsong
1c0ca462c4 Resolve playback bug 2022-05-23 19:55:11 -04:00
1hitsong
963aae78d8 Add Now Playing scene 2022-05-23 19:55:11 -04:00
1hitsong
874eedecd7 Create fallback type if no results are found 2022-05-23 19:55:11 -04:00
1hitsong
577569a26f Create callback for music data 2022-05-23 19:55:11 -04:00
1hitsong
00df907c94 Add button to play album 2022-05-23 19:55:11 -04:00
Jimi
52bf0c35c6 formatting 2022-05-23 19:55:11 -04:00
Jimi
c3bfab4af5 Works with Music/Artists/Albums and Music/Artists/Song 2022-05-23 19:54:41 -04:00
1hitsong
938777dea4 Format and Validate 2022-05-23 19:54:03 -04:00
1hitsong
158b7623ba Play song when selected 2022-05-23 19:54:03 -04:00
1hitsong
183ada1f5c Remove test AudioPlayer code 2022-05-23 19:54:03 -04:00
1hitsong
cc4f6ef3a6 Run format script 2022-05-23 19:54:03 -04:00
1hitsong
d01a477bb3 Include artist name in top text of album 2022-05-23 19:54:03 -04:00
1hitsong
e48a663a93 Enable album selection from home screen 2022-05-23 19:54:03 -04:00
1hitsong
1d608ea840 Code Cleanup 2022-05-23 19:54:03 -04:00
1hitsong
b884cba356 Change song list display. Begin work on audio playback 2022-05-23 19:54:03 -04:00
1hitsong
6d61084823 Display songs when album selected 2022-05-23 19:54:03 -04:00
1hitsong
8f516926ef Create music artist view 2022-05-23 19:54:03 -04:00
Jimi
047f884b35
Merge pull request #606 from jimdogx/fixes/update-readme
Update various READMEs for newcomers.
2022-05-23 07:33:31 -06:00
Jimi
a832595546
Update README.md
Co-authored-by: Neil Burrows <neil@pawprint.co.uk>
2022-05-23 07:32:51 -06:00
Jimi
c7cc6c1bc2
Merge branch 'master' into fixes/update-readme 2022-05-23 07:10:16 -06:00
Neil Burrows
d00ad94f6c
Merge pull request #566 from cthelight/default-subtitles 2022-05-23 13:49:43 +01:00
Neil Burrows
986e53bd2d
Merge branch 'master' into default-subtitles 2022-05-23 13:49:09 +01:00
Jimi
090e335a98 Better organization. 2022-05-23 06:42:13 -06:00
Jimi
b2a8ebf50c Update various READMEs for newcomers. 2022-05-23 06:31:58 -06:00
Jimi
9b47ed6685
Merge pull request #605 from jimdogx/fixes/flickering-items
Remove Tag query parameter
2022-05-23 06:16:19 -06:00
Jimi
6b3dbdfaee
Merge branch 'master' into fixes/flickering-items 2022-05-23 06:14:50 -06:00
Neil Burrows
9adc5244db
Merge branch 'master' into default-subtitles 2022-05-23 07:31:54 +01:00
Neil Burrows
ba773a8b55
Merge pull request #604 from jimdogx/fixes/add-photos-back 2022-05-23 07:25:48 +01:00
Neil Burrows
04b92cf92b
Merge branch 'master' into fixes/add-photos-back 2022-05-23 07:23:14 +01:00
candry7731
3f1ad4d129
Add item counts to overhang in ItemGrid (#581) 2022-05-23 07:19:22 +01:00
cthelight
7ee5411095 Subtitles: Search by URL not assumed index
Currently, when populating subtitleTracks, we assume that the ordering
and list of populated subtitle tracks will not change when Roku moves
the list into availableSubtitleTracks. This causes an issue with some
videos as it is not always consistent.

This patch modifies the logic to no-longer inject assumed final indices
into our list of text-based subtitles, but instead search through the
availableSubtitleTracks array and locate the actual subtitle that
refers to the same URL as in our list. In this way we are guaranteed
to always tell Roku to play the subtitle we want, no matter how re-
ordered the options get.

NOTE: The URL gets mildly mangled in the process of copying from
subtitleTracks to availableSubtitleTracks, so we need so search via
substring, rather than doing a full string comparison.
2022-05-22 17:54:56 -05:00
Jimi
23acaac410 Remove unneed Tag parameter 2022-05-22 16:41:02 -06:00
Jimi
e0b1fec82f
Merge branch 'master' into fixes/add-photos-back 2022-05-22 16:21:11 -06:00
Jimi
2afb9b0fb8 Add photos back in to client 2022-05-22 16:20:34 -06:00
cthelight
39dad7666c Subtitles: Auto-select default option
On other players (web/andriod app) the user perferences for
subtitle behavior are taken into account, and used to make an
assumption about subtitle behavior.

This patch ports most of that logic here. "Smart" selection is not
yet fully-featured, as it requires additional knowledge about audio
language preferences. Rather it uses the fallback mechanism, which
emulates the "Default" subtitle option.

The logic for the different options was based on the main jellyfin
repo (specifically sha 49d5fdb33fc9792147c1df03e1d1b051e6b7ec79 in
file Emby.Server.Implementations/Library/MediaStreamSelector.cs)

Additionally, this implementation specifically prefers text-based
subtitles (assuming they match the user's preference) as they are
the only ones natively supported by Roku.

Also, the subtitle changing mechanism is reworked slightly to make
use of the new implementation herein
2022-05-22 17:08:54 -05:00
DJSweder
f7652c2858 Translated using Weblate (Czech)
Currently translated at 100.0% (122 of 122 strings)

Translation: Jellyfin/Jellyfin Roku
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-roku/cs/
2022-05-20 13:59:28 -04:00
Moritz
0f47184027 Translated using Weblate (German)
Currently translated at 50.8% (62 of 122 strings)

Translation: Jellyfin/Jellyfin Roku
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-roku/de/
2022-05-20 13:59:28 -04:00
Neil Burrows
c090651fe0
Merge pull request #591 from neilsb/add-screen-events 2022-05-19 21:44:46 +01:00
Neil Burrows
5251c46270
Merge branch 'master' into add-screen-events 2022-05-19 21:41:29 +01:00
Neil Burrows
6b0fe4cb6c
Merge pull request #601 from jimdogx/feature/558-Remove-Books-from-Continue-Watching 2022-05-19 21:41:11 +01:00