summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
2023-07-29config(qt): Fix generic read settinglat9nq
Previously was not respecting whether the setting was default.
2023-07-23shared_widget: Determine default request earlierlat9nq
Fixes a bug where a restore button could be created for an unmanaged widget.
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-21configure_system: Use lambda template to group settingslat9nq
2023-07-21common: Move global configuration state modifiers back to settingslat9nq
2023-07-21common,configure_system: Rename method to GetCategorylat9nq
Fixes essentially a shadowing issue.
2023-07-21shared_translation: Update memory layout mode stringslat9nq
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-21configuration: Use enum indexlat9nq
2023-07-21shared_translation: Deobfuscate auto time zonelat9nq
2023-07-21settings,configuration: Add a default suffixlat9nq
2023-07-21configuration: Use paired settingslat9nq
2023-07-21shared_widget: Internalize component restoringlat9nq
2023-07-21configuration: Use specialization of settingslat9nq
Reduces some ugliness in frontend code.
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-21config_shared: Remove storing the group from tablat9nq
2023-07-21configuration: Move speed_limit to corelat9nq
2023-07-21shared_widget: Correct spellinglat9nq
2023-07-21common,yuzu-qt: GCC warning silenceslat9nq
Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref.
2023-07-21configure_graphics: Simplify UpdateAPILayoutlat9nq
Reduces branching/swictch cases for simplicity/code size
2023-07-21configure_graphcs: Fix setting shader/device in custom configlat9nq
2023-07-21configuration: Use shorter constructor as neededlat9nq
Reduces some confusion hopefully, since some parameters specified were not specific to the setting in question.
2023-07-21shared_widget: Some documentation, add shorter constructorlat9nq
The shorter constructor enables us to specify some options without needing to specify the default values of multiplier which wasn't always appropriate and could be confusing.
2023-07-21config: Remove unused functionslat9nq
2023-07-21settings: Delete cpu_accuracy_first_timelat9nq
Almost a 2 year old migration setting now
2023-07-21shared_widget: Improve logging, use Setting::Rangedlat9nq
2023-07-21configuration/shared: Clean up includes [IWYU]lat9nq
2023-07-21configure_graphics: Fix vulkan_device buglat9nq
2023-07-21(ui,)settings: Use explicit instantiationlat9nq
Reduces compile times a tad on clang.
2023-07-21shared_widget: Avoid calling QWidgetPrivate::setVisiblelat9nq
This particular setVisible function is unnecessary. It also has horrible runtime performance, so much that it consumed maybe 80% of the time used to create a widget.
2023-07-21FIXME configuration: Avoid unnecessary allocationslat9nq
ConfigurationShared::Widget needs to be created with a builder. This would avoid some duplicated code.
2023-07-21shared_widget: Add SPDX headerlat9nq
2023-07-21general: Add typeinfo where neededlat9nq
Using typeid without including typeinfo first produces an ill-formed program.
2023-07-21shared_widget: Use actionTriggered for user input signalslat9nq
Clicking the slider without directly interacting with the slider handle would change the value, but not trigger the restore button.
2023-07-21shared_translation: Populate combobox enums with macrolat9nq
2023-07-21configuration: Document odd widget caseslat9nq
Explain why we need to do things differently at times, to serve as a reference.
2023-07-21shared_translation: Add translation for use video framratelat9nq
2023-07-21settings,general: Rename non-confirming enumslat9nq
2023-07-21configuration: Use IDs to sort holdslat9nq
2023-07-21settings,general: Rename/reorder setting idslat9nq