summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
AgeCommit message (Collapse)Author
2020-10-21Merge pull request #8962 from JosJuice/android-saf-wadLéo Lam
Android: Use storage access framework for importing WADs
2020-10-20Android: Add AndroidOverlayButtons INI sectionRyan Meredith
2020-10-20Android: Add "Default Values" button for overlay seekbarsRyan Meredith
2020-10-20Android: Convert SharedPreferences to INI Settings (simple cases)Ryan Meredith
2020-10-20Merge pull request #9146 from JosJuice/android-disable-cover-downloadLéo Lam
Android: Allow disabling cover downloading
2020-10-20Merge pull request #9061 from Ebola16/Fixes3Léo Lam
Android: Improve WRITE_EXTERNAL_STORAGE denial
2020-10-20Merge pull request #9154 from Ebola16/RRLéo Lam
Android: ConfirmRunnable to RunRunnable with optional confirmation
2020-10-19Android: Refetch game metadata after returning from settingsJosJuice
2020-10-19Android: Allow disabling cover downloadingJosJuice
In case someone wants to be very careful with how much bandwidth they use or with what data GameTDB.com collects on you. This is already an option in DolphinQt (though in DolphinQt it will switch entirely from using covers to banners when turned off).
2020-10-19Android: Allow reading global settings without a Settings objectJosJuice
This makes things more convenient for code that just wants to read the current value of a setting.
2020-10-19Merge pull request #9148 from JosJuice/android-active-layerLéo Lam
Android: Fix setting read during play with local game layer active
2020-10-18Android: Show alert messages as toasts outside of emulationJosJuice
It would be difficult to use the AlertMessage class for messages that need to be showed outside of emulation, but showing them as toasts is better than not showing them.
2020-10-18Android: ConfirmRunnable to RunRunnable with optional confirmationRyan Meredith
2020-10-15Merge pull request #9144 from JosJuice/confirm-runnable-finishJosJuice
Android: Remove finish from ConfirmRunnableViewHolder
2020-10-14Merge pull request #9119 from JosJuice/android-seekbar-minLéo Lam
Android: Correct SliderSetting minimum value behavior on API < 26
2020-10-14Merge pull request #9135 from JosJuice/show-nkitLéo Lam
Show NKitness in file format string
2020-10-13Android: Fix setting read during play with local game layer activeJosJuice
During emulation, when LocalGame has a value but CurrentRun doesn't, we want to read from LocalGame, not CurrentRun. This change exposes a LAYER_ACTIVE option that handles this correctly.
2020-10-11Android: Remove finish from ConfirmRunnableViewHolderJosJuice
2020-10-10Merge pull request #8833 from Ebola16/PanicJosJuice
Android: Use DialogFragment for AlertMessage
2020-10-06Show NKitness in file format stringJosJuice
To make people more aware that they're not using a normal disc image.
2020-10-06Use Instant in StartupHandler.Isira Seneviratne
2020-10-01Android: Correct SliderSetting minimum value behavior on API < 26JosJuice
2020-09-26Android: seekbar.setMin requires API level 26Ryan Meredith
2020-09-25Android: Add "Ignore for this session" to Warning AlertMessagesRyan Meredith
2020-09-25Android: Use DialogFragment for AlertMessageRyan Meredith
2020-09-23Android: Use storage access framework for importing WADsJosJuice
This is part of my efforts to add support for scoped storage. I figured I would start with a relatively simple feature to make sure that everyone is fine with the approach I'm taking before I tackle more complicated features like the game list.
2020-09-23Merge pull request #8902 from JosJuice/android-convertJMC47
Android: Add disc image conversion
2020-09-22Merge pull request #9088 from JosJuice/android-sysconfJMC47
Android: Add Wii SYSCONF settings to GUI
2020-09-16Merge pull request #9075 from JosJuice/android-osd-left-marginJMC47
Android: Move OSD out of the way when menu is open
2020-09-16Merge pull request #9077 from JosJuice/android-settings-initializedJMC47
Android: Wait for initialization before launching EmulationActivity
2020-09-16Android: Add workaround for conversion progress in dark modeJosJuice
2020-09-16Android: Only allow conversion when appropriateJosJuice
2020-09-16Android: Refactor GamePropertiesDialog.onCreateDialogJosJuice
2020-09-16Android: Pass GameFile to GamePropertiesDialog::newInstanceJosJuice
2020-09-16Android: Let the user select where to save disc imagesJosJuice
2020-09-16Android: Add content provider support to File::DeleteJosJuice
2020-09-16Android: Add content provider support to File::IOFileJosJuice
Taking the hit now to prepare us for when Google Play will force us to use scoped storage...
2020-09-16Android: Add a progress dialog for disc image conversionJosJuice
2020-09-16Android: Add disc image conversionJosJuice
2020-09-16Android: Move OSD out of the way when menu is openJosJuice
https://bugs.dolphin-emu.org/issues/12256
2020-09-16Android: Add Wii SYSCONF settings to GUIJosJuice
Now that PR 8975 is merged, we can finally add this without hacks. https://bugs.dolphin-emu.org/issues/11605
2020-09-16Android: Don't assume SliderSetting minimum is 0JosJuice
2020-09-16Merge pull request #8975 from JosJuice/android-new-configJosJuice
Android: Hook up the new config system
2020-09-15Android: Display default path when no path is setJosJuice
2020-09-15Android: Allow editing settings during emulationJosJuice
2020-09-15Android: Show overridden game settings in boldJosJuice
2020-09-15Android: Hook up game settings to the new config systemJosJuice
2020-09-15Android: Hook up global settings to the new config systemJosJuice
2020-09-14Android: Fix touch pointer not working after activity recreationJosJuice
The only place where initTouchPointer was called automatically was Host_RequestRenderWindowSize, which is called at least once after emulation start, but not after activity recreation.
2020-09-13Android: Improve WRITE_EXTERNAL_STORAGE denialRyan Meredith