Preferences update, play theme song volume

This commit is contained in:
Damontecres 2025-10-06 12:34:27 -04:00
parent 3a255fcd8a
commit 628771211d
No known key found for this signature in database
8 changed files with 206 additions and 37 deletions

View file

@ -16,8 +16,17 @@ message HomePagePreferences{
bool enable_rewatching_next_up = 2;
}
enum ThemeSongVolume {
DISABLED = 0;
LOWEST = 1;
LOW = 2;
MEDIUM = 3;
HIGH = 4;
HIGHEST = 5;
}
message InterfacePreferences {
bool play_theme_songs = 1;
ThemeSongVolume play_theme_songs = 1;
}
message AppPreferences {