Use app preferences

This commit is contained in:
Damontecres 2025-10-02 18:05:24 -04:00
parent 3dd78f175b
commit 9e876a85d4
No known key found for this signature in database
18 changed files with 146 additions and 45 deletions

View file

@ -10,10 +10,16 @@ message PlaybackPreferences {
int32 seek_bar_steps = 4;
}
message HomePagePreferences{
int32 max_items_per_row = 1;
bool enable_rewatching_next_up = 2;
}
message AppPreferences {
// The currently signed in server and user IDs, mostly for restoring a session
string current_server_id = 1;
string current_user_id = 2;
PlaybackPreferences playback_preferences = 3;
HomePagePreferences home_page_preferences = 4;
}