mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Option to show next up during credits/outros (#130)
Adds an option to the show the next up during the end credits (outro) instead of at the very end of the video. The next up pushes up from the bottom and the video scales down to fit above. Still a WIP though ### Sample screenshot <img width="1280" height="771" alt="next_up_credits Large" src="https://github.com/user-attachments/assets/9a03d0ec-325d-4efe-a28e-51270ddaaa89" />
This commit is contained in:
parent
715dc1abda
commit
d76f829804
7 changed files with 87 additions and 37 deletions
|
|
@ -3,6 +3,11 @@ syntax = "proto3";
|
|||
option java_package = "com.github.damontecres.wholphin.preferences";
|
||||
option java_multiple_files = true;
|
||||
|
||||
enum ShowNextUpWhen{
|
||||
END_OF_PLAYBACK = 0;
|
||||
DURING_CREDITS = 1;
|
||||
}
|
||||
|
||||
enum SkipSegmentBehavior{
|
||||
IGNORE = 0;
|
||||
AUTO_SKIP = 1;
|
||||
|
|
@ -52,6 +57,7 @@ message PlaybackPreferences {
|
|||
PlaybackOverrides overrides = 15;
|
||||
int64 pass_out_protection_ms = 16;
|
||||
PrefContentScale global_content_scale = 17;
|
||||
ShowNextUpWhen show_next_up_when = 18;
|
||||
}
|
||||
|
||||
message HomePagePreferences{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue