summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
2023-11-05Merge pull request #11969 from german77/profileliamwhite
service: acc: Ensure proper profile size
2023-11-05service: acc: Ensure proper profile sizegerman77
2023-11-04Merge pull request #11965 from german77/colorliamwhite
core: hid: Signal color updates
2023-11-04core: hid: Signal color updatesNarr the Reg
2023-11-04Convert files to LF eolKelebek1
2023-10-31qt: remove duplicate exit confirmation settingLiam
2023-10-29Merge pull request #11689 from liamwhite/breakpadliamwhite
qt: implement automatic crash dump support
2023-10-29Merge pull request #11803 from flodavid/improve-controller-applet-clickNarr the Reg
yuzu: Improve behavior when clicking on controller box in Controller applet
2023-10-23Merge pull request #11841 from german77/halpliamwhite
yuzu: fix restore shortcuts button
2023-10-22yuzu: Fix vibration reseting to 1%german77
2023-10-21yuzu: Fix restore shortcuts buttonNarr the Reg
2023-10-17yuzu: Improve behavior when clicking on controller box in Controller appletflodavid
- Apply changes on Controller configuration of commit 9524d70 to Controller applet - Fix regression of this previous commit: Enabling a controller in its tab did not activate previous controllers Signed-off-by: flodavid <fl.david.53@gmail.com>
2023-10-14Merge pull request #11779 from flodavid/improve-player-config-clickliamwhite
yuzu: Improve behavior when clicking on controller box in Control configuration
2023-10-14yuzu: Improve behavior when clicking on controller box in Control Configurationflodavid
When reducing the number of Connecter Controllers, keep the one clicked if it was not the last one of the list
2023-10-12yuzu: Enable to use controller to restart a gameflodavid
- Show the right confirm dialog if wanted - Create generic method to ask close confirmation - Add "R + Plus + Minus" default shortcut to Restart emulation
2023-10-12yuzu: Use new setting method for stop emulationFlorian
2023-10-12yuzu: Enable to use controller to close a gameflodavid
- Add General setting to choose if a confirm dialog is shown when stopping - Show the right confirm dialog if wanted - Reuse dialog window that ask to close the game - Add "L + Plus + Minus" default shortcut to Stop emulation - Create generic question dialog based on TAS dialog - It allows controller interaction on most dialogs
2023-10-08Merge pull request #10519 from mdmrk/masterliamwhite
yuzu-qt: Track play time
2023-10-08qt: implement automatic crash dump supportLiam
2023-10-03yuzu: Fix mute when in background settingNarr the Reg
2023-09-16Merge pull request #11492 from lat9nq/c-numeric-conversionsliamwhite
general: Remove uncaught usages of C++ string number conversions
2023-09-14shared_widget: Use default literals morelat9nq
2023-09-14debug: Add renderdoc capture hotkeyGPUCode
2023-09-13shared_widget: Forward-port Citra changeslat9nq
Seemed like a good time to move these over. Also remove usage of std::sto{l,ll,ul,f,d}
2023-09-13configure_ui: Remove unnecessary usage of stoullat9nq
2023-09-10Merge pull request #11450 from lat9nq/no-vk-device-fixliamwhite
configure_graphics: Fix handling of broken Vulkan
2023-09-05configure_graphics: Capture by referencelat9nq
Small optimization.
2023-09-04configure_graphics: Fix handling of broken Vulkanlat9nq
The VSync combobox wouldn't populate if there was no Vulkan device, which caused issues with trying to set VSync on other backends. This also adds another layer to GetCurrentGraphicsBackend to check for broken Vulkan and return OpenGL instead of Vulkan.
2023-09-03msvc: set warning level to /W4 globallyDanila Malyutin
And fix a bunch of warnings
2023-08-26yuzu-qt: Track play timeMario
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