summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* android: Save global settings in onStopGravatar t8952023-11-276-63/+11
|
* android: Multi directory UIGravatar t8952023-11-2727-59/+837
|
* Merge pull request #12153 from liamwhite/deck2Gravatar liamwhite2023-11-251-1/+2
|\ | | | | renderer_vulkan: exclude steam deck oled from force max clock setting
| * renderer_vulkan: exclude steam deck oled from force max clock settingGravatar Liam2023-11-241-1/+2
| |
* | Merge pull request #12151 from german77/no-crashGravatar liamwhite2023-11-252-0/+51
|\ \ | | | | | | core: hid: Ensure output devices are initialized
| * | core: hid: Ensure output devices are initializedGravatar Narr the Reg2023-11-242-0/+51
| | |
* | | Merge pull request #12110 from liamwhite/mali-nullviewGravatar liamwhite2023-11-252-2/+17
|\ \ \ | | | | | | | | vk_texture_cache: add workaround for nullDescriptor on Mali
| * | | vk_texture_cache: add workaround for nullDescriptor on MaliGravatar Liam2023-11-202-2/+17
| | | |
* | | | Merge pull request #11889 from t895/ini-libGravatar Charles Lombardo2023-11-2462-3492/+2690
|\ \ \ \ | |_|_|/ |/| | | configuration: Unify config handling across frontends
| * | | frontend_common: Don't specify default value for screenshot_pathGravatar t8952023-11-231-2/+1
| | | |
| * | | frontend_common: Don't load config files that we fail to openGravatar t8952023-11-231-0/+10
| | | |
| * | | frontend_common: Add option to read unsigned integersGravatar t8952023-11-213-2/+34
| | | |
| * | | frontend_common: Set config array size to 0 if the array is ended without ↵Gravatar t8952023-11-211-4/+8
| | | | | | | | | | | | | | | | changing its index
| * | | frontend_common: Manually handle opening config fileGravatar t8952023-11-211-2/+31
| | | | | | | | | | | | | | | | SimpleIni only has the ability to use ANSI strings for config paths so this breaks opening configs on paths with special characters. This ensures that we open the right path on each platform.
| * | | frontend_common: Add special config case for unmapped windows network drivesGravatar t8952023-11-211-1/+9
| | | | | | | | | | | | | | | | Normally we save paths with '/' as the delimiter for each segment but when you manually select a network drive instead of using a mapped location, this would break. This ensures that if the read filesystem location starts with '//', we keep that pattern.
| * | | frontend_common: Disable UTF-8 BOM in configGravatar t8952023-11-211-1/+1
| | | |
| * | | android: Rework config lifecycleGravatar t8952023-11-216-6/+31
| | | | | | | | | | | | | | | | Exposes options for initializing, unloading, reloading, and saving settings that let us update the config much more granularly based on what's happening in the UI.
| * | | android: Remove ini4jGravatar t8952023-11-212-43/+0
| | | |
| * | | common: settings: Add ifdefs to define android's default settingsGravatar t8952023-11-211-6/+36
| | | |
| * | | general: Remove inihGravatar t8952023-11-212-2/+2
| | | |
| * | | config: Unify config handling under frontend_commonGravatar t8952023-11-2153-3435/+2539
| |/ / | | | | | | | | | | | | | | | Replaces every way of handling config for each frontend with SimpleIni. frontend_common's Config class is at the center where it saves and loads all of the cross-platform settings and provides a set of pure virtual functions for platform specific settings. As a result of making config handling platform specific, several parts had to be moved to each platform's own config class or to other parts. Default keys were put in platform specific config classes and translatable strings for Qt were moved to shared_translation. Default hotkeys, default_theme, window geometry, and qt metatypes were moved to uisettings. Additionally, to reduce dependence on Qt, QStrings were converted to std::strings where applicable.
* | | Merge pull request #12140 from liamwhite/qcr-unreachableGravatar liamwhite2023-11-241-1/+1
|\ \ \ | | | | | | | | query_cache: demote report synced unreachable to assert
| * | | query_cache: demote report synced unreachable to assertGravatar Liam2023-11-231-1/+1
| | |/ | |/|
* | | Merge pull request #12076 from german77/resourceGravatar liamwhite2023-11-2336-1415/+1625
|\ \ \ | |/ / |/| | service: hid: Create appropriate hid resources
| * | service: hid: Create appropriate hid resourcesGravatar Narr the Reg2023-11-2036-1415/+1625
| |/
* | game_list_worker: Explicit caputure of 'this'Gravatar Merry2023-11-211-1/+1
| |
* | shared_widget: Explicit capture of 'this'Gravatar Merry2023-11-211-2/+2
| |
* | Merge pull request #12107 from daisymlleung/patch-1Gravatar liamwhite2023-11-211-1/+12
|\ \ | | | | | | Stub CheckBlockedUserListAvailability for Super Bomberman R 2
| * | Stub CheckBlockedUserListAvailabilityGravatar daisymlleung2023-11-211-1/+12
| | |
* | | Merge pull request #12045 from liamwhite/codec-refactorGravatar liamwhite2023-11-2111-374/+705
|\ \ \ | | | | | | | | video_core: refactor video frame and packet parsing
| * | | video_core: refactor video frame and packet parsingGravatar Liam2023-11-1611-374/+705
| | | |
* | | | Merge pull request #11984 from lat9nq/lupdateGravatar liamwhite2023-11-212-258/+310
|\ \ \ \ | |_|_|/ |/| | | shared_translation: Call tr more directly
| * | | CMakeLists: Add option to call lupdate directlyGravatar lat9nq2023-11-081-9/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | qt_create_translation silently fails to run at all on my system. Since there is no error, I was unable to determine a fix. This sidesteps the convenience function by setting up the rules ourselves. This is left as an option since this path likely does not work on Windows.
| * | | shared_translation: Call tr for each stringGravatar lat9nq2023-11-081-249/+268
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Qt can't parse tr called within a macro, so we must call it on each string. shared_translation: Remove redundant include
* | | | Merge pull request #12011 from Macj0rdan/controller-appletGravatar Narr the Reg2023-11-2016-89/+594
|\ \ \ \ | |_|_|/ |/| | | Implemented qlaunch version of the controller applet
| * | | Implemented qlaunch version of the controller appletGravatar FrozenAra2023-11-1916-89/+594
| | | |
* | | | Merge pull request #12093 from t895/zip-intentGravatar liamwhite2023-11-203-72/+33
|\ \ \ \ | | | | | | | | | | android: Use file picker intent for save exporter
| * | | | android: Use file picker intent for save exporterGravatar t8952023-11-193-72/+33
| | | | |
* | | | | Merge pull request #12092 from t895/recent-games-defaultGravatar liamwhite2023-11-202-2/+3
|\ \ \ \ \ | | | | | | | | | | | | android: Select recently played games by default in search tab
| * | | | | android: Use path instead of programId for recently added / played keyGravatar t8952023-11-191-2/+2
| | | | | |
| * | | | | android: Select recently played games by default in search tabGravatar t8952023-11-191-0/+1
| |/ / / /
* | | | | Merge pull request #12091 from t895/silly-speedGravatar liamwhite2023-11-201-1/+1
|\ \ \ \ \ | | | | | | | | | | | | android: Allow up to 400% for the limit speed percent setting
| * | | | | android: Allow up to 400% for the limit speed percent settingGravatar t8952023-11-191-1/+1
| |/ / / /
* / / / / service: hid: Ensure resource manager is initializedGravatar Squall-Leonhart2023-11-201-1/+1
|/ / / / | | | | | | | | | | | | | | | | | | | | Ensures the proper initialization of the IActiveVibrationDeviceList. By using GetResourceManager() instead of resource_manager, we make sure that the IActiveVibrationDeviceListis initialized before it's used, preventing potential null issues. Fixes #12088
* | | | Merge pull request #12083 from liamwhite/viewportGravatar liamwhite2023-11-195-1/+11
|\ \ \ \ | | | | | | | | | | renderer_vulkan: ignore viewport stores on non-supporting drivers
| * | | | renderer_vulkan: ignore viewport stores on non-supporting driversGravatar Liam2023-11-195-1/+11
| | | | |
* | | | | qt: fix linux buildGravatar Liam2023-11-191-0/+3
|/ / / /
* | | | Merge pull request #12081 from ↵Gravatar liamwhite2023-11-193-5/+31
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | FernandoS27/check-out-on-your-broke-crypto-friends Vulkan: Be more generous with pipeline workers for Android
| * | | | Vulkan: Be more generous with pipeline workers for AndroidGravatar Fernando Sahmkow2023-11-193-5/+31
| | | | |
* | | | | Merge pull request #12036 from FernandoS27/you-should-have-more-than-one-towelGravatar liamwhite2023-11-191-0/+13
|\ \ \ \ \ | | | | | | | | | | | | Query Cache: Disable write syncing on Android