| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-15 | Android: Convert AbstractIntSetting to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Convert AbstractFloatSetting to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Convert AbstractBooleanSetting to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Convert AbstractSetting to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Convert SettingsItem to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Convert StringSingleChoiceSetting to Kotlin | Charles Lombardo | |
| 2023-03-15 | Android: Create extension functions for serializables | Charles Lombardo | |
| Getting serializables without explicitly stating the type is deprecated in Android 13. However we still need a way to get a serializable in versions below that. Now with these we can avoid repeating the same if block. | |||
| 2023-03-14 | Android: Use LifecycleOwner instead of subtype | JosJuice | |
| 2023-03-14 | Android: Clean up outdated comment in AfterDirectoryInitializationRunner | JosJuice | |
| 2023-03-14 | Merge pull request #11641 from JosJuice/android-remove-old-config | Mai | |
| Android: Remove support for the old config system | |||
| 2023-03-14 | Merge pull request #11651 from JosJuice/android-profile-off-by-one | Pierre Bourdon | |
| Android: Fix per-game profile setting off-by-one | |||
| 2023-03-13 | Android: Fix per-game profile setting off-by-one | JosJuice | |
| 2023-03-11 | Merge pull request #11524 from K0bin/document-provider | JosJuice | |
| Android: Implement DocumentProvider | |||
| 2023-03-11 | Android: Remove SettingsActivityView parameters from Settings | JosJuice | |
| No longer used for anything. | |||
| 2023-03-11 | Android: Rework the "global" settings functions | JosJuice | |
| getXGlobal() is now identical to getX(), and setXGlobal(int, X) is now identical to setX(int, X) in the cases where setX(int, X) exists. We can remove/rename them. | |||
| 2023-03-11 | Android: Don't require Settings object for reading a setting | JosJuice | |
| Made unnecessary by the previous commit. | |||
| 2023-03-11 | Android: Remove support for the old config system | JosJuice | |
| All settings that we care about from an Android perspective are now supported by the new config system, so we can remove all the Android code for the old config system. This should have no impact on users. | |||
| 2023-03-11 | Migrate game INI profile setting to new config system | JosJuice | |
| 2023-03-11 | Merge pull request #11385 from JosJuice/android-input-overhaul | JosJuice | |
| Android input overhaul | |||
| 2023-03-08 | Android: Implement DocumentProvider | Robin Kertels | |
| This allows users to access the Dolphin user directory. | |||
| 2023-03-08 | Android: Only show divider in settings for headers | Robin Kertels | |
| 2023-03-07 | Android: Use coroutine for system updates | Charles Lombardo | |
| 2023-03-07 | Android: Switch to indeterminate progress bar on system update cancel | Charles Lombardo | |
| 2023-03-07 | Android: Remove hardcoded strings from system update dialogs | Charles Lombardo | |
| 2023-03-07 | Android: Remove orientation lock on system update dialog | Charles Lombardo | |
| 2023-03-07 | Android: Convert OnlineUpdateRegionSelectDialogFragment to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Convert SystemMenuNotInstalledDialogFragment to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Convert SystemUpdateResultFragment to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Convert WiiUtils to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Convert SystemUpdateViewModel to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Convert SystemUpdateProgressBarDialogFragment to Kotlin | Charles Lombardo | |
| 2023-03-07 | Android: Disable input device sensor input due to crash | JosJuice | |
| 2023-03-07 | Android: Add "more settings" button to overlay control setting dialog | JosJuice | |
| Some people might wonder where the ability to select an extension and the Sideways Wii Remote went. This button will take them to the general settings, which is where those settings now live. At some point in the future, we should probably move everything to the general settings. But this pull request is already big enough as it is! | |||
| 2023-03-07 | Android: Change how the overlay controller setting works, part 2 | JosJuice | |
| The previous commit wasn't enough for getting inputs to work for controllers 2-4. | |||
| 2023-03-07 | Android: Change how the overlay controller setting works | JosJuice | |
| Up until now, there have been two settings on Android that stored the selected Wii Remote extension: the normal one that's also used on PC, and a SharedPreferences one that's used by the overlay controls to determine what controls to show. It is possible for these two to end up out of sync, and my input changes have made that more likely to happen. To fix this, let's rework how the overlay controller setting works. We don't want it to encode the currently selected Wii Remote extension. However, we can't simply get rid of the setting, because for some Wii games we need the ability to switch between a GameCube controller and a Wii Remote. What this commit does is give the user the option to select any of the 4 GameCube controllers and any of the 4 Wii Remotes. (Before, controllers 2-4 weren't available in the overlay.) Could be useful for things like the Psycho Mantis fight in Metal Gear Solid. I'm also switching from SharedPreferences to Dolphin.ini while I'm at it. | |||
| 2023-03-07 | Android: Remove the in-emulation IR sensitivity options | JosJuice | |
| This too can be set in the normal controller settings now. | |||
| 2023-03-07 | Android: Remove the in-emulation motion control options | JosJuice | |
| You can set this in the normal controller settings now. | |||
| 2023-03-07 | Android: Allow changing controller settings during emulation | JosJuice | |
| 2023-03-07 | Android: Add the advanced input mapping dialog | JosJuice | |
| It's missing a lot of features from the PC version for now, like buttons for inserting functions and the ability to see what the expression evaluates to. I mostly just wanted to get something in place so you can set up rumble. Co-authored-by: Charles Lombardo <clombardo169@gmail.com> | |||
| 2023-03-03 | Android: Add selecting input profile per game | JosJuice | |
| 2023-03-03 | Android: Add input profile management | JosJuice | |
| Co-authored-by: Charles Lombardo <clombardo169@gmail.com> | |||
| 2023-03-03 | Android: Show warning when using old pre-defined controller INIs | JosJuice | |
| Co-authored-by: Charles Lombardo <clombardo169@gmail.com> | |||
| 2023-03-03 | Android: Add Default and Clear actions for controllers | JosJuice | |
| 2023-03-03 | Android: Prevent showing mapping dialog with no device selected | JosJuice | |
| 2023-03-03 | Android: Add "Create mappings for other devices" | JosJuice | |
| 2023-03-03 | Android: Add input device selection | JosJuice | |
| 2023-03-03 | Android: Implement enabling/disabling control groups | JosJuice | |
| All this code for just a single checkbox... Ah well, it has to be done | |||
| 2023-03-03 | Android: Move Sideways Wii Remote setting one submenu up | JosJuice | |
| A slight departure from DolphinQt, but I think it makes sense, because it will make the important Sideways Wii Remote setting easier to find. | |||
| 2023-03-03 | Android: Split Wii Remote settings into submenus | JosJuice | |
| Too much stuff on one screen otherwise. This split matches DolphinQt. | |||
| 2023-03-03 | Android: Add extension selection | JosJuice | |
