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:
Damontecres 2026-05-20 12:40:58 -04:00 committed by GitHub
parent 45d466d76f
commit 366483599c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 333 additions and 206 deletions

View file

@ -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 {