| Age | Commit message (Collapse) | Author |
|
Android Studio 2022.2 "Chipmunk" changes the code formatting rules a
little. Let's apply the new formatting in this PR so that the lint bot
doesn't take it out on innocent PRs.
|
|
Without this, debug builds of Dolphin fail to launch. The OS tries
to locate org.dolphinemu.dolphinemu.debug.DolphinApplication
but fails to find it because its actual name is
org.dolphinemu.dolphinemu.DolphinApplication.
Partially reverts 6b74907f9dc884290c041c7bac325043b76d62a9.
|
|
workaround for https://issuetracker.google.com/issues/232060576
|
|
|
|
|
|
|
|
|
|
|
|
Android: Modernize theming system
|
|
|
|
Create vector Wii and Gamecube icons and re-import default android icons as vector graphics. Scales better on a greater range of devices and takes up less space.
|
|
themes.xml now contains a collection of colors, attributes, and styles. No visuals have changed, but this will allow for a more flexible theming system in the future for custom day/night/etc themes. This also removes a bunch of redundant code that can now be written as global styles and inherited themes.
|
|
Android: Fix in game menu rippleColor and colorEdgeEffect
|
|
+Remove background on card
+Increase max # of lines for game title
+Root layout is now a linear layout with the card view rounding the corners on the box art
|
|
|
|
Should fix the crash reported in https://bugs.dolphin-emu.org/issues/12885
|
|
This should fix https://bugs.dolphin-emu.org/issues/9105
|
|
|
|
Android: Only use getActionIndex for ACTION_POINTER_DOWN/ACTION_POINTER_UP
|
|
Android: Actually use a thread for DirectoryInitialization
|
|
Android: Fix displaying the current value of double tap setting
|
|
Android: Implement expand display cutout option.
|
|
The currentValue variable doesn't use InputOverlay.OVERLAY_
constants, it uses NativeLibrary.ButtonType constants.
Sigh, why do enums have to be so bad on Android that Google
recommends against using them :(
Anyway, simply not doing anything is a reasonable option here.
What happens then is that if the currently selected button is
invalid for the current controller, none of the available options
in the dialog will be pre-selected.
|
|
|
|
Some ROMs don't have fullscreen feature, for example Pixel Experience, so have a option for that is better. Also you don't need put the app on fullscreen anymore with that.
|
|
|
|
Use clipToPadding="false" to prevent top white bar when scrolling
|
|
Android: Increase target and compileSdk version to 32 (Android 12L/Sv2)
|
|
Trying to change it while a game is running does nothing.
DolphinQt already inactivates it while a game is running.
|
|
Android: Inherit from Material 3 themes and round corners on box art
|
|
|
|
|
|
Use large card view rounded corner guidelines
Fix action bar theming
Needed to import android back button clip art to fix material 3 theming issue. The DolphinSettingsBase style used to inherit from the Theme.MaterialComponents.DayNight.DarkActionBar theme which would provide the light text and icons but this is no longer available with Material 3.
Fit box art more snugly in CardView
Change card height to match cover art
Add padding to top of games list recyclerview
|
|
Android: Clarify what we mean by "user data"
|
|
|
|
|
|
|
|
According to the documentation, getActionIndex should only be
used with ACTION_POINTER_DOWN and ACTION_POINTER_UP. We've had a
few crashes reported in the Play Console regarding invalid pointer
indices for getY, and I'm hoping this will help with that.
|
|
If libusb fails to initialize, an assertion fails, but if that happens before the main window is created, then Dolphin just dies. Now, the panic alert is properly shown and the user can ignore it.
|
|
`((Runnable) () -> init(context)).run()` is just a more complicated way
of writing `init(context)`, and doesn't on its own launch a thread.
|
|
fbe7cf6 set this for most buttons in the in-game menu but missed
the savestate-related buttons and Unpause Emulation.
|
|
Use config changed callback to detect SD insertion/ejection
|
|
Android: Call OnConfigChanged when resetting a setting
|
|
Android: Get rid of the boot timeout
|
|
Android: Fix swapped texture dumping description strings
|
|
|
|
This saves the GUI from having to manually call SDIO_EventNotify.
With that out of the way, we can let users change the
"Insert SD Card" setting on Android while a game is running.
|
|
The only settings that were using LegacyIntSetting are now in the new
config system, so there's no reason to have LegacyIntSetting anymore.
|
|
Port Wiimote source settings to the new config system
|
|
This lets us finally get rid of BootManager's ConfigCache!
|