| Age | Commit message (Collapse) | Author |
|
|
|
Previously would take several seconds to save, sometimes causing ANRs, which
was made worse when adding all the controller values. Now we only load/save
each section instead of doing it for each setting. Also added a method
to save an individual setting.
|
|
|
|
Android: Add controller rumble support
|
|
Android: Change the file browser dialog ok button title
|
|
[Android] Remove enter and exit transition
|
|
Android can be funky with controller vibration. Of the three controlers I have that contain a
vibrator(PS3, Xbox360, 2017 Shield controller), only the Xbox360 controller registered as having
a vibrator. So YYMV depending on the driver support of the device.
|
|
|
|
I hope this will make it more clear to users that they are suppose to
select the dircetory that has the games.
|
|
|
|
Android: Don't require vibrate permission
|
|
Google Play won't distribute the app to devices that do not allow
the vibrate permission if required is not false.
|
|
Android: lock screen to landscape by default
|
|
A new setting has been added to the general config to allow rotation. This should
resolve a lot of crash complaints due to screen rotation.
|
|
|
|
|
|
|
|
|
|
Fix race condition caused by opening graphics options while running
|
|
Android: Require user to enable savestate menu options
|
|
With the nature of android updates invalidating save states, it's best to hide
these options unless enabled by the user. The option to use savestates can now
be enabled via the General settings menu.
|
|
Android: Run Directory Initialization as a thread instead of service
|
|
|
|
|
|
Menu show action fx for android
|
|
This sets the surfaceview to the top half of the screen instead of it sitting in the middle which gives more room for onscreen controls.
|
|
|
|
|
|
|
|
Android: Add rumble for phone
|
|
Two reasons for this change. First, it appears that some android launchers do some sort of call into
the application when long pressing the app icon, which in turn calls the DirectoryInit service. This
was ok to do prior to Oreo but will cause crashes with the new restrictions on services running
in the background. Which leads to the second reason that DirectoryInit doesn't need to be a service
at all since these actions are required for dolphin to function and shouldn't be a scheduled action.
So we instead just kick this off in a new thread and send the broadcast when done.
|
|
|
|
This currently only supports using the internal vibrate on a phone for rumble.
|
|
|
|
Android: Fix cover stretching and show more games per row
|
|
|
|
|
|
If the user is offline, then there won't be a network response. Just debug log that the report couldn't send and move on
|
|
ahead of time
It's possible to not have set the device type if the user launches a game without going to the main activity(like launching from the TV menu)
|
|
This global belongs in the JitOptions structure, as it's a conditional
setting (A.K.A. option) that changes the behavior of what the JIT does.
Plus it keeps the scope of the variable constrained to the general area
it's intended to be used and nothing further.
|
|
|
|
|
|
Android: cache all page, avoid image flicking when swipe from last page to first page
|
|
Android: Add usage statistics to android
|
|
Style cleanup
|
|
Update Android Gradle Plugin to 3.1.4
|
|
Cleanup
|
|
This requires buildbot changes: the path to the Android Studio
installation must be supplied in an environment variable.
Modified files are copied out to a temporary directory, Android Studio
is asked to format the files, and a git diff is performed.
|
|
|
|
Before this, it was using 0 as a resource ID. That has undefined
behavior, and seemed to use a previous string.
|