summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
2023-09-03msvc: set warning level to /W4 globallyDanila Malyutin
And fix a bunch of warnings
2023-08-26Merge pull request #11356 from lat9nq/console-mode-pgliamwhite
general,config-qt: Present Console Mode as an enum with separate options in game properties
2023-08-25ui: Fixed inverted controls on ReverseSlider widgetsBenjaminHalko
fixes: #11236
2023-08-22general: Use console mode helper across projectlat9nq
2023-08-22config(qt): Sanitize docked handheld controllerlat9nq
2023-08-22shared_translation: Define use_docked_mode textslat9nq
2023-08-22general: Convert use_docked_mode to an enumerationlat9nq
Allows some special interactions with it in the Qt frontend.
2023-08-22shared_widget: Implement radio groupslat9nq
2023-08-16configure_ui: Silence MSVC warninglat9nq
2023-08-16yuzu-qt: Screenshots depend more on the graphics settingslat9nq
2023-08-16yuzu-qt: Implement unspecified screenshot ratiolat9nq
2023-08-15configure_ui: Update the screenshots datalat9nq
2023-08-15config: Read the entire screenshots categorylat9nq
2023-08-15yuzu-qt: Enable specifying screenshot resolutionlat9nq
2023-08-02config(qt): Fix name of network categorylat9nq
Turns out the network interface is in the Services category. Can't wait get rid of this whole config. Addresses yuzu-emu/yuzu/issues/11205
2023-08-02config(qt): Use qt_config directly to read configlat9nq
ReadSetting with the default is a convenience function reading settings, not for use in an internal environment. It tries to manage the default value of a setting.
2023-07-30shared_widget: Only save global settings as neededlat9nq
Fixes a potential but not reproduced issue where the custom config is being applied to the global config.
2023-07-30config(qt): Write the UiGeneral categorylat9nq
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.