summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
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
2023-07-21shared_widget: Fix includeslat9nq
2023-07-21shared_widget: Complete refactoringlat9nq
Reduces code bloat a good bit by moving code specific to each sub widget to their own functions.
2023-07-21shared_widget: Refactor againlat9nq
Starting with combobox Putting code specific to the sub-widget in their own function.
2023-07-21c_per_game: Inform when settings might not be configurablelat9nq
2023-07-21shared_translation: Fix pragma oncelat9nq
2023-07-21shared_translation: Add translation for AstcRecompressionlat9nq
2023-07-21configure_system: Hide locale warn at startlat9nq
2023-07-21shared_widget: Force min width of 100 for restore buttonlat9nq
Dark theme mandates a 100px minimum width for QAbstractButton, even though this is not desired here.
2023-07-21configuration: Workaround for Windows Qt buglat9nq
Odd issue happens that dragging the cpu or system tabs in custom configs would cause the window to take up the entire verticle space of the screen.
2023-07-21shared_translation: Add missing tooltipslat9nq
2023-07-21configuration: Clean up includes a bitlat9nq
2023-07-21configuration_shared: Remove old custom config setup functionslat9nq