summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-07-22shared_widget: Use QRegularExpressionlat9nq
2023-07-22config: Read the Network categorylat9nq
2023-07-22configure_audio/cpu: Sort settingslat9nq
Was producing out of order settings as a result of the switch to vectors
2023-07-21configure_dialog: Focus the button box on startlat9nq
Without this, the Reset All Settings button would be selected by default
2023-07-21qt/configuration: Use deleteLaterlat9nq
2023-07-21common,qt-config: Remove usage of forward_listlat9nq
2023-07-21settings_common: Use a vector in category linkagelat9nq
Improve storage requirements.
2023-07-21settings: Remove sorting from loglat9nq
Unecessary, and would run every time the settings are logged.
2023-07-21configure_system: Use lambda template to group settingslat9nq
2023-07-21config-android: Update memory layout member namelat9nq
2023-07-21k_system_control: Always return some memory sizelat9nq
2023-07-21common: Move global configuration state modifiers back to settingslat9nq
2023-07-21settings_setting: Fix typolat9nq
2023-07-21common,configure_system: Rename method to GetCategorylat9nq
Fixes essentially a shadowing issue.
2023-07-21settings: Cleanuplat9nq
Addresses review feedback Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2023-07-21shared_translation: Update memory layout mode stringslat9nq
2023-07-21core,common: Give memory layout setting an enumlat9nq
Allows for 6GB and 8GB layouts to be selected.
2023-07-21settings: Require time zone setting value for stirnglat9nq
2023-07-21shared_translation: Add missing time zoneslat9nq
2023-07-21shared_translation: Add controller_applet_disabledlat9nq
2023-07-21shared_translation: Add barrier_feedback_loopslat9nq
2023-07-21cmake: Reposition preprocessor switch commenttoast2903
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2023-07-21configuration: Use enum indexlat9nq
2023-07-21settings: Give indices to enumslat9nq
2023-07-21cmake: Use standard preprocessor on MSVClat9nq
2023-07-21settings_common: Remove unncessary enum speclat9nq
2023-07-21shared_translation: Deobfuscate auto time zonelat9nq
2023-07-21settings_enums: Remove castinglat9nq
Not sure how I missed this earlier, but these vectors can be constructed using the type of the enum.
2023-07-21settings_setting: Silence shadowing warningslat9nq
2023-07-21settings,configuration: Add a default suffixlat9nq
2023-07-21configuration: Use paired settingslat9nq
2023-07-21settings: Define paired settingslat9nq
settings_common: Remove unused optional
2023-07-21shared_widget: Internalize component restoringlat9nq
2023-07-21configuration: Use specialization of settingslat9nq
Reduces some ugliness in frontend code.
2023-07-21settings: Define specializations for settingslat9nq
Suggests to a frontend how to represent each setting.
2023-07-21configuration: Use a builder to create widgetslat9nq
This gets rid of some repeated code and sets us up to send more information to the new widget.
2023-07-21shared_translation: Fix context usagelat9nq
Currently unused, but I don't want to start headaches when someone decides to use it the first time.
2023-07-21settings,translation: Fix time zone enumlat9nq
Renames enum values to conform to naming convention.
2023-07-21settings,opengl,yuzu-qt: Fix AA, Filter maximumslat9nq
The new enum macros don't support setting values directly. For LastAA and LastFilter, this means we need a simpler approach to loop around the toggle in the frontend...
2023-07-21settings_enums: More aggressively use macroslat9nq
This lets us define an enum and all the textual representations of its values in one swing. All for the price of some ugly macros.
2023-07-21config_shared: Remove storing the group from tablat9nq
2023-07-21settings,uisettings: Remove leading underscorelat9nq
2023-07-21configuration: Move speed_limit to corelat9nq
2023-07-21settings: Move speed_limit to corelat9nq
2023-07-21android-config: Update enum labelslat9nq
2023-07-21common,yuzu-qt: Avoid explicit instantiation on old clanglat9nq
Clang versions < 15 have compile issues with explicit instantiation. Disable it for these versions.
2023-07-21settings_setting: Fix MSVC errorlat9nq
2023-07-21shared_widget: Correct spellinglat9nq
2023-07-21(android)config: Clang formatlat9nq
2023-07-21common,yuzu-qt: GCC warning silenceslat9nq
Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref.