mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Customize which ratings to display (#1407)
## Description Adds a setting, Settings->Advanced->"Customize which ratings to display", which allows for toggling parental, community, or critic ratings to be displayed in the quick details. This doesn't apply to discover yet. ### Related issues Related to #1020 ### Testing Emulator ## Screenshots ### Just community rating <img width="1280" height="720" alt="ratings Large" src="https://github.com/user-attachments/assets/d6f9ad8a-6cc5-4680-9d2f-66d16a44b41e" /> ## AI or LLM usage None
This commit is contained in:
parent
45d466d76f
commit
366483599c
15 changed files with 333 additions and 206 deletions
|
|
@ -170,6 +170,12 @@ message SearchPreferences {
|
|||
bool combined_search_results = 1;
|
||||
}
|
||||
|
||||
enum DisplayToggle{
|
||||
OFFICIAL_RATING = 0;
|
||||
CRITIC_RATING = 1;
|
||||
COMMUNITY_RATING = 2;
|
||||
}
|
||||
|
||||
message InterfacePreferences {
|
||||
ThemeSongVolume play_theme_songs = 1;
|
||||
bool remember_selected_tab = 2;
|
||||
|
|
@ -185,6 +191,7 @@ message InterfacePreferences {
|
|||
bool enable_media_management = 12;
|
||||
bool show_logos = 13;
|
||||
SearchPreferences search_preferences = 14;
|
||||
repeated DisplayToggle display_toggles = 15;
|
||||
}
|
||||
|
||||
message AdvancedPreferences {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue