| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-05-02 | Convert the Android source code to the directory structure of a Gradle-based ↵ | Eder Bastos | |
| Android Studio project. | |||
| 2015-03-08 | [Android] Support arguments from Activity Monitor. | Ryan Houdek | |
| Activity Monitor can start activities by using adb to invoke it. This will allow us to set the user directory and autostart file from adb. adb shell am start -n org.dolphinemu.dolphinemu/.gamelist.GameListActivity -e AutoStartFile /sdcard/AC.gcz -e UserDir /sdcard/dolphin-emu2/ This allows more automated testing to be done with Dolphin on Android. | |||
| 2015-02-25 | Move user directory detection location to UICommon. | Ryan Houdek | |
| The UI should decide on where it wants the user directory, not our core system. This is in anticipation of some upcoming work on Android which will need proper user directory setting. | |||
| 2015-02-24 | [Android] Stop eating button events we don't handle. | Ryan Houdek | |
| We were eating /all/ button events except the back button. This would cause issues where Android wouldn't receive button press events for things like volume rockers. So you couldn't change the audio ingame, even if that button isn't bound to an input. Now we return to Android if we've handled that button press, so it works fine. | |||
| 2015-02-18 | [Android] Fix ignore format changes option. | Ryan Houdek | |
| This option was inversed, so it was always set to the opposite of what was wanted. | |||
| 2015-01-26 | [Android] Change the default renderer to OpenGL. | Ryan Houdek | |
| We now require OpenGL ES 3.0 minimum to run, this is the sane default. | |||
| 2015-01-26 | [Android] Select the AArch64 recompiler core by default if shown to support ↵ | Ryan Houdek | |
| ARMv8. | |||
| 2015-01-26 | [Android] No longer carry a default configuration file. | Ryan Houdek | |
| 2015-01-18 | [Android] Expose aspect ratio to the video settings. | Ryan Houdek | |
| 2014-12-28 | Android: Use findViewById instead of getChildAt | Lioncash | |
| More futureproof if anything else is added to the layout. | |||
| 2014-12-28 | Android: Remove unnecessary context variable in SliderPreference | Lioncash | |
| 2014-12-26 | [Android] Add support for sterescopy configuration. | Ryan Houdek | |
| This menu allows us to configure the stereoscopy video settings if the device supports it. This menu is only enabled if the hardware supports everything needed to use the feature. | |||
| 2014-12-23 | [Android] Add a few helper functions to EGLHelper. | Ryan Houdek | |
| Let's us check for extension support and OpenGL version. | |||
| 2014-11-30 | [Android] Removes CPU architecture number from CPU helper. | Ryan Houdek | |
| This was '7' on all ARMv7 devices but was 'AArch64' on the Nexus 9. Trying to cast to integer was causing a crash. We don't even use this so may as well as wipe it. Also adds Nvidia to the CPU implementers list. | |||
| 2014-11-20 | Merge pull request #1580 from lioncash/android | Lioncash | |
| InputConfigFragment: Use a StringBuilder for string concatenation | |||
| 2014-11-20 | AboutFragmentItem: Remove incorrect javadoc tag | Lioncash | |
| 2014-11-20 | InputConfigFragment: Use a StringBuilder for string concatenation | Lioncash | |
| This is the recommended way to join strings, since it doesn't destroy and recreate the string repeatedly. | |||
| 2014-11-17 | Merge pull request #1563 from lioncash/ui | Lioncash | |
| Android: Use a PagerTabStrip instead of the ActionBar. | |||
| 2014-11-17 | Host: Kill off GetRenderWindowSize | Lioncash | |
| 2014-11-16 | Android: Use a PagerTabStrip instead of the ActionBar. | Lioncash | |
| The ActionBar method of doing the tabular layout is deprecated on Android 5.0. This method alleviates those deprecations while providing the same functionality. | |||
| 2014-11-15 | Android: Remove unused imports in GameListItem | Lioncash | |
| 2014-11-15 | Android: Prevent instantiation of utility classes | Lioncash | |
| 2014-11-15 | Android: Compress an if statement in FolderBrowser | Lioncash | |
| 2014-11-02 | Merge pull request #1264 from Stevoisiak/GCM-to-ISO | Ryan Houdek | |
| Gcm to iso | |||
| 2014-11-02 | Updated android GCM references to ISO | Stevoisiak | |
| 2014-10-30 | Enables EFB copies by default on Android. | Ryan Houdek | |
| I was mistaken and only changed one line previously which didn't enable them by default. This changes the default configuration to enable EFB copies and EFB to texture. | |||
| 2014-10-18 | Fix a crash on Android when unplugging a controller during emulation. | Ryan Houdek | |
| If the action we are getting is a ACTION_CANCEL, it means that the "gesture" is aborted and we shouldn't perform any more actions on it. | |||
| 2014-10-08 | Android: Use apply() instead of commit() for SharedPreference changes. | Lioncash | |
| apply() changes the in-memory instance of SharedPreferences and writes to the disk asynchronously, rather than synchronously, which commit() does. Since these are done on the UI thread, they should be asynchronous. | |||
| 2014-10-08 | [Android] Return to game list instead of exiting app | Sean Maas | |
| 2014-09-19 | Show OpenGL or OpenGL ES on Android depending on what the device supports. | Ryan Houdek | |
| Reduces confusion for the users | |||
| 2014-08-28 | Update shown CPU cores in the Android UI. | Ryan Houdek | |
| Only show the JIT cores on x86_64(Will have its own issues once we reach that point) Show AArch64 JIT if running on a AArch64 device(Good luck with that for now. Future proofing though) | |||
| 2014-07-16 | [Android] Enable filtering onscreen buttons | Sean | |
| 2014-07-16 | Merge pull request #580 from SeannyM/smaller-b | Lioncash | |
| [Android] User configurable input overlay scaling | |||
| 2014-07-15 | [Android] Onscreen controls better resemble GC and user configurable scaling | Sean | |
| 2014-07-14 | Display file size in GiB instead of bytes. | Eder Bastos | |
| 2014-07-14 | Use the "No Banner" graphic as a Drawable resource, instead of as an asset. | Eder Bastos | |
| 2014-07-09 | Move first-execution copying of shaders / binaries to an IntentService. | Eder Bastos | |
| 2014-07-05 | Android: Remove an unnecessary getString call from EmulationActivity | Lioncash | |
| 2014-06-24 | Implement ViewHolder pattern on the GameListAdapter. | Eder Bastos | |
| 2014-06-23 | Allow user to quit app with back button. | Eder Bastos | |
| 2014-06-21 | Separate the XML view handling of the folder browser and the game list from ↵ | Lioncash | |
| one another. | |||
| 2014-06-21 | Fix banner scaling in game list. | Eder Bastos | |
| -In GameListAdapter.java, the existing scaling code is unnecessary and stops Android's built in scaling from doing its job. -In gamelist...etc.xml, set the icon's width to 100 density-independent pixels (i.e. have android figure out how to make it the right size.) | |||
| 2014-06-02 | Fix potential crash in Video Settings. | Ryan Houdek | |
| When Shaders folder didn't exist it would cause crash. | |||
| 2014-05-30 | Android: add multitouch support | Sean | |
| 2014-05-30 | Merge pull request #300 from Sonicadvance1/Fix-AndroidInput | shuffle2 | |
| [Android] Fixes a bunch of input bugs. | |||
| 2014-05-10 | Merge pull request #349 from Sonicadvance1/Android-Default-Config | Ryan Houdek | |
| [Android] Change default EFB copy method from disabled to texture. | |||
| 2014-05-05 | Change Android's default EFB configuration to texture instead of disabled. | Ryan Houdek | |
| 2014-05-05 | Adds support for the PP shaders in the Android UI. | Ryan Houdek | |
| Copies over the PP shaders to the APK's assets and installs them on run. Exposes them via the video settings UI. This is in anticipation of dropping the workaround for rotated blits on Adreno and instead forcing shader usage by the user. | |||
| 2014-04-27 | Add a comment about game list color | Sean Maas | |
| 2014-04-27 | Make the Android UI more like the desktop UI | Sean | |
