Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-25 | android: Add cpu bakend gui toggle | GPUCode | |
2023-11-21 | android: Rework config lifecycle | t895 | |
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. | |||
2023-11-21 | android: Remove ini4j | t895 | |
2023-11-21 | general: Remove inih | t895 | |
2023-11-21 | config: Unify config handling under frontend_common | t895 | |
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. | |||
2023-11-20 | Merge pull request #12093 from t895/zip-intent | liamwhite | |
android: Use file picker intent for save exporter | |||
2023-11-20 | Merge pull request #12092 from t895/recent-games-default | liamwhite | |
android: Select recently played games by default in search tab | |||
2023-11-19 | android: Use file picker intent for save exporter | t895 | |
2023-11-19 | android: Use path instead of programId for recently added / played key | t895 | |
2023-11-19 | android: Select recently played games by default in search tab | t895 | |
2023-11-19 | android: Allow up to 400% for the limit speed percent setting | t895 | |
2023-11-15 | android: Disable PiP by default | t895 | |
2023-11-14 | Merge pull request #12034 from t895/fps-outline | liamwhite | |
android: Add drop shadow to FPS counter | |||
2023-11-14 | android: Don't enter PiP during startup or shutdown | t895 | |
2023-11-14 | android: Add drop shadow to FPS counter | t895 | |
Also let the style control the text size | |||
2023-11-14 | android: Use suspend function for creating dynamic shortcuts | t895 | |
If the coil loader ever got stuck when creating a dynamic shortcut icon, the app would freeze. This would happen most notably when booting nca format games. This pushes that process to a separate coroutine that can be cancelled by the main activity's lifecycle. | |||
2023-11-13 | Merge pull request #12014 from t895/shrink-logo | liamwhite | |
android: Shrink branding images | |||
2023-11-13 | Merge pull request #12015 from t895/remove-auto | liamwhite | |
android: Remove "auto" region option | |||
2023-11-12 | android: Use the same transition animation between every fragment in settings | t895 | |
The animation that I used for entering search was prone to weird visual bugs and could appear visually jarring. This just makes things appear more consistent. | |||
2023-11-12 | android: Use more padding on top of each settings header | t895 | |
2023-11-12 | android: Remove dividers between each setting | t895 | |
2023-11-12 | android: Add icons and descriptions to the first-level advanced settings page | t895 | |
Additionally adjusts padding to place the icons in-line with the back button in the top app bar and makes the text for normal settings appear in-line with the expanded top app bar title. | |||
2023-11-12 | android: Remove general section from settings | t895 | |
Limit speed options were moved to system, cpu accuracy was moved to debug, and PiP was moved to graphics. | |||
2023-11-12 | android: Remove "auto" region option | t895 | |
This doesn't exist and if you clicked it, your region would be set to Taiwan. | |||
2023-11-12 | android: Add a landscape-specific layout to the about page | t895 | |
Moves the logo to the side to fit more information on screen | |||
2023-11-12 | android: Shrink logo in about page | t895 | |
2023-11-12 | android: Shrink logo in settings tab | t895 | |
Adjusts padding between the cards and logo to fit appropriately | |||
2023-11-12 | android: Fix top app bar tint being cut off in the about fragment | t895 | |
Adjust margin on the toolbar, not the app bar | |||
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. |