Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-09 | android: Hide loading animation on first frame | t895 | |
2023-11-06 | Merge pull request #11972 from t895/fps-counter-adjustments | liamwhite | |
android: FPS counter adjustments | |||
2023-11-05 | android: Simplify FPS counter padding | Charles Lombardo | |
2023-11-05 | android: Color the FPS counter white | Charles Lombardo | |
2023-11-04 | android: Always update FPS counter | Charles Lombardo | |
2023-11-03 | android: Don't reload log/system after loading firmware/backup | Charles Lombardo | |
2023-11-03 | android: Log more system information during startup | Charles Lombardo | |
Logs device manufacturer/model, SoC manufacturer/model where available, and the total system memory | |||
2023-11-03 | android: Fix fetching system memory size from MemoryUtil | Charles Lombardo | |
We weren't rounding up the value at a unit before (GB, MB, etc) we were rounding up the total bytes and that would do nothing. This fixes that, and the check for total system memory during first emulation start where we tried to check the required system memory against 1 gigabyte. | |||
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-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 | 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 | android: Initialize filesystem components during application start | Charles Lombardo | |
2023-10-31 | android: Implement applet launcher | Charles Lombardo | |
2023-10-31 | Merge pull request #11925 from t895/controller-fix | liamwhite | |
android: Fix controllers stuck on player 2 | |||
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 | 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 #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 | 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 | 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 | android: Break home settings into grid with large screens | Charles Lombardo | |
2023-10-13 | Merge pull request #11767 from t895/gradle-stuff | Charles Lombardo | |
android: Update dependencies | |||
2023-10-13 | android: Fix incorrect assumption for driver installation validation | Charles Lombardo | |
The driver was assumed to be installed at this point before I made a refactor. Now we just check if the copy operation was successful and delete the file if it fails. | |||
2023-10-13 | android: Remove unnecessary flag to extract native libs in AndroidManifest.xml | Charles Lombardo | |
2023-10-13 | android: Update dependencies | Charles Lombardo | |
Updates to androidx navigation, lifecycle, preference, fragment, recyclerview, and core | |||
2023-10-13 | android: Update ndk to 26.1.10909125 | Charles Lombardo | |
The new ndk uses LLVM 17.0.2 so we can remove the LLVM download and libc++ options for the android builds | |||
2023-10-13 | Merge pull request #11649 from t895/driver-manager | liamwhite | |
android: Driver manager | |||
2023-10-12 | android: Update AGP to 8.1.2 | Charles Lombardo | |
2023-10-12 | android: Add GPU driver management fragment | Charles Lombardo | |
Implements a GPU driver manager that saves all drivers to the user data directory and asynchronously installs drivers when they're needed. | |||
2023-10-02 | vk_present_manager: recreate surface on any surface loss | Liam | |
2023-10-01 | android: Use application context for all FileUtil functions | Charles Lombardo | |
2023-09-28 | Merge pull request #11604 from t895/only-install-nsp | liamwhite | |
Frontend: Remove ability to install xci files | |||
2023-09-27 | Merge pull request #11613 from t895/fragment-exception-change | Charles Lombardo | |
android: Various play store fixes | |||
2023-09-27 | android: Prevent crash when trying to change pages in setup fragment | Charles Lombardo | |
Sometimes when we want to change the current setup page, the current view isn't available and we try to alter the current view. This adds a guard to prevent that issue. | |||
2023-09-27 | android: Prevent setup fragment crash in background | Charles Lombardo | |
Sometimes during onSaveInstanceState, the SetupFragment would crash the app in the background if we tried to store the state of a view. | |||
2023-09-27 | android: Don't update views if binding is null in onConfigurationChanged | Charles Lombardo | |