Customize TV guide display (#443)

Adds a view options button for the TV guide to allow some basic
customization:
* Show details header
* Adjust how channels are sorted
* Toggle color coding for programs

Related to #250 
Closes #288 
Fixes #439
This commit is contained in:
damontecres 2025-12-12 22:05:01 -05:00 committed by GitHub
parent 0d8800863b
commit 6edcfb1067
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 456 additions and 23 deletions

View file

@ -125,6 +125,13 @@ message SubtitlePreferences{
int32 edge_thickness = 12;
}
message LiveTvPreferences {
bool show_header = 1;
bool favorite_channels_at_beginning = 2;
bool sort_by_recently_watched = 3;
bool color_code_programs = 4;
}
message InterfacePreferences {
ThemeSongVolume play_theme_songs = 1;
bool remember_selected_tab = 2;
@ -133,6 +140,7 @@ message InterfacePreferences {
bool nav_drawer_switch_on_focus = 5;
bool show_clock = 6;
SubtitlePreferences subtitles_preferences = 7;
LiveTvPreferences live_tv_preferences = 8;
}
message AdvancedPreferences {