Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-03 | android: Update surface parameters on emulation start | Charles Lombardo | |
This adds a quick update that notifies the render surface if there was a change between surface creation and emulation starting. | |||
2023-11-03 | Merge pull request #11948 from german77/hard_ring | liamwhite | |
service: hid: Ensure GetNextEntryIndex can't fail | |||
2023-11-03 | Merge pull request #11947 from german77/battery | liamwhite | |
core: hid: Fix wrong battery values | |||
2023-11-03 | Merge pull request #11943 from liamwhite/silence-logspam | liamwhite | |
renderer_vulkan: minimize transform feedback support log | |||
2023-11-03 | Merge pull request #11936 from liamwhite/romfs-nonsense | liamwhite | |
romfs: fix extraction of single-directory root | |||
2023-11-02 | service: hid: Ensure GetNextEntryIndex can't fail | german77 | |
2023-11-02 | core: hid: Fix wrong battery values | german77 | |
2023-11-01 | renderer_vulkan: minimize transform feedback support log | Liam | |
2023-11-01 | Merge pull request #11942 from t895/log-version | liamwhite | |
android: Adjust log lifecycle | |||
2023-11-01 | android: Adjust log lifecycle | Charles Lombardo | |
Now logging will start when the frontend starts like qt does. This also adjusts the share log button to follow where we share the current log if we just returned from a game or return the old log if we haven't started a game yet. | |||
2023-11-01 | android: Use yuzu logging system | Charles Lombardo | |
Now anything that's logged in the frontend will be printed into the log file | |||
2023-11-01 | android: Default to player number 0 if we get an input from an unrecognized ↵ | Charles Lombardo | |
controller | |||
2023-11-01 | android: Adjust driver manager source string | Charles Lombardo | |
2023-11-01 | android: Reorganize settings tab | Charles Lombardo | |
2023-10-31 | romfs: fix extraction of single-directory root | Liam | |
2023-10-31 | android: Auto-generate locale config | Charles Lombardo | |
2023-10-31 | android: Update translations from transifex | Charles Lombardo | |
2023-10-31 | Merge pull request #11931 from t895/applet-launcher | liamwhite | |
android: Applet launcher UI | |||
2023-10-31 | Merge pull request #11929 from dima-xd/swkbd-applet | liamwhite | |
service: am: Add support for LLE Software Keyboard Applet | |||
2023-10-31 | android: Initialize filesystem components during application start | Charles Lombardo | |
2023-10-31 | android: Implement applet launcher | Charles Lombardo | |
2023-10-31 | service: am: Add support for LLE Software Keyboard Applet | Dzmitry Dubrova | |
2023-10-31 | Merge pull request #11925 from t895/controller-fix | liamwhite | |
android: Fix controllers stuck on player 2 | |||
2023-10-31 | Merge pull request #11892 from german77/pkm_screenshot | liamwhite | |
service: am: Implement ISelfController::SaveCurrentScreenshot | |||
2023-10-30 | android: Reorder controller indexes and only use controllers | Charles Lombardo | |
Before we could ignore controller inputs by forwarding them to player two if a non-controller was connected before and recognized as an input device. | |||
2023-10-30 | Merge pull request #11922 from t895/simplify-card-layout | liamwhite | |
android: Simplify game card layout | |||
2023-10-30 | Merge pull request #11903 from Macj0rdan/scrollable-volume-button | liamwhite | |
Implemented wheel event for volume control in VolumeButton | |||
2023-10-30 | android: Simplify game card layout | Charles Lombardo | |
Using a material card view to shape the image was just a waste of a layout pass. A shapeable image view does what we want and does it faster. | |||
2023-10-30 | android: FileUtil: Add option to suppress log for native exists() calls | Charles Lombardo | |
We often check for the existence of files that only exist in ExeFS so this can spam logcat with useless messages when scanning for games. | |||
2023-10-30 | android: Fix resolving android URIs in native code | Charles Lombardo | |
2023-10-30 | android: Refactor game metadata collection to new file | Charles Lombardo | |
This also removes irrelevant data and adds new information from/to the Game data class and RomMetadata struct | |||
2023-10-30 | android: Use header for EmulationSession | Charles Lombardo | |
2023-10-30 | Merge pull request #11920 from Termynat0r/master | liamwhite | |
Fix macOS build | |||
2023-10-30 | Merge pull request #11916 from t895/focus-fix | liamwhite | |
android: Release touch on input overlay when opening in-game menu | |||
2023-10-30 | Merge pull request #11915 from t895/startup-freeze | liamwhite | |
android: Move game deserialization to another thread | |||
2023-10-30 | Merge pull request #11910 from liamwhite/surface-lost-on-creation | liamwhite | |
renderer_vulkan: ensure exception on surface loss | |||
2023-10-30 | Fix macOS build | Termynat0r | |
Added missing preprocessor macros for macOS analog to linux and freebsd | |||
2023-10-30 | android: InputHandler: Convert to object | Charles Lombardo | |
This doesn't need to be an instance of a class because it doesn't hold any data. It's just all helper functions. | |||
2023-10-30 | android: Removed unused ControllerMappingHelper | Charles Lombardo | |
2023-10-29 | Merge pull request #11689 from liamwhite/breakpad | liamwhite | |
qt: implement automatic crash dump support | |||
2023-10-29 | android: Release touch on input overlay when opening in-game menu | Charles Lombardo | |
2023-10-29 | android: Move game deserialization to another thread | Charles Lombardo | |
Deserializing games from the cache in shared preferences was done on the main thread and could cause a stutter on startup. | |||
2023-10-29 | Merge pull request #11911 from german77/leak_event | liamwhite | |
core: Close all KEvents | |||
2023-10-29 | Merge pull request #11909 from t895/card-grid | liamwhite | |
android: Break home settings into grid with large screens | |||
2023-10-29 | Merge pull request #11904 from ameerj/gl_threaded_opts_on | liamwhite | |
nvidia_flags: Enable GL Threaded optimizations | |||
2023-10-29 | Merge pull request #11893 from liamwhite/swizzle | liamwhite | |
renderer_vulkan: fix viewport swizzle dirty state tracking | |||
2023-10-29 | core: Close all KEvents | german77 | |
2023-10-29 | renderer_vulkan: ensure exception on surface loss | Liam | |
2023-10-29 | Implemented wheel event for volume control in VolumeButton | FrozenAra | |
2023-10-29 | android: Break home settings into grid with large screens | Charles Lombardo | |