summaryrefslogtreecommitdiff
path: root/Source/Android/res/values
AgeCommit message (Collapse)Author
2013-09-16[Android] Slightly change the layout of the AboutFragment. Looks more like ↵Lioncash
an actual list view now.
2013-09-12[Android] Add a fastmem option to the cpu options, default disabled.Ryan Houdek
2013-09-07[Android] Fix the input binding string.Lioncash
Forgot a period at the end. Thanks for pointing that out pauldachz
2013-09-04[Android] Display the name of the control that is being bound in the input ↵Lioncash
settings. Makes the binding description more informative.
2013-09-04[Android] Remove unused strings from the resource XML files.Lioncash
2013-09-01[Android] Add the option to show the on-screen FPS counter.Lioncash
2013-08-29[Android] Preliminary save-state support. Have the UI set up. Crashes with ↵Lioncash
SIGABRT however.
2013-08-25[Android] Woops forgot to commit the new resource strings.Lioncash
2013-08-24[Android] Better description for the dual core option.Lioncash
2013-08-23[Android] Fix some redundancy in the category names for the settings menu. ↵Lioncash
In a menu named "Settings" (which is shown in the top left) we have the categories, "CPU Settings" and "Video Settings" - but the fact they are settings pages is already established at this point so it's redundant. Just made them "CPU" and "Video" instead. Also changed the description for dual-core They now look like this: http://i.imgur.com/qieaKmL.png
2013-08-23[Android] Add an option to clear the game list.Lioncash
2013-08-23[Android] Since we don't show invalid filetypes in the file browser anymore, ↵Lioncash
there's no need to check if a file is valid or not since they're all valid now.
2013-08-22[Android] Simplify the XML layout for the about menu. Remove unused strings.Lioncash
2013-08-20[Android] Migrate the "Draw Onscreen Controls" preference to the video settings.Lioncash
2013-08-20[Android] Implement a ViewPager for the settings. Also, move classes into ↵Lioncash
appropriate packages to make things cleaner.
2013-08-20[Android] Add most of the Dolphin video/gfx settings to the settings menu.Lioncash
2013-08-19[Android] Remove the loading toast messages from the UI. These really don't ↵Lioncash
need to be here since the things they were used for took very, very little time to load.
2013-08-19[Android] Change the settings menu a little more. Instead of the settings ↵Lioncash
being a single view with settings from all components being displayed, I have broken it into sections. This future-proofs the settings menu in the sense that it won't get cluttered before people start asking "Hey, shouldn't this be broken into sections?". As of this commit, it is broken into CPU Settings and Video Settings. I also simplified the code that is responsible for setting the valid CPU cores and video backends by simply making UI string arrays that get chosen, based on the platform the Android device is running on.
2013-08-13[Android] Add translatable="false" to the names of the string arrays in ↵Lioncash
prefvalues.xml.
2013-08-12[Android] Multi-language support (or at least the basic foundation of it).Lioncash
Added an example translation (Japanese). So now the Android version can both display in English and Japanese, depending on what the Android device's system language is set to. Also did a tiny clean-up of InputConfigItem.java so that the parameters are slightly more descriptive. Now, to do a translation in [x] language, all you have to do is take the normal English strings.xml and translate the XML entries into said language, and simply make a folder in the /res/ sub-directory in the form of values-[region code]. IE) With the Japanese translation, it is in the folder /res/values-ja No configuration other than that is needed. After doing the above, the language should load fine on any device when set to that specific system language. By default, if a translation file does not exist for a given system language. The app will automatically fall back to using the English translation. This *should* be bug-free since I did check everything multiple times. But if any issues occur, please report them so that I can fix them.
2013-07-11[Android] Show JIT cores based on host arch.Ryan Houdek
2013-06-22[Android] Remove SimonVT menudrawer library. Move to Google's support ↵Ryan Houdek
library for their navigation drawer support. Overall cleanup.
2013-06-18[Android] When running OpenGL ES 3 backend, we've got to switch the screen ↵Ryan Houdek
coordinates or bad things happen. Adds a Driver bug that causes swap every single flush. Hard requirement currently to see /anything/ on screen.
2013-06-11[Android] Start of *working* GLES3 support. Needs to be able to compile in ↵Ryan Houdek
Windows still.
2013-05-25[Android] Disable OpenGL in the settings menu since it doesn't work yet. ↵Ryan Houdek
Change some theme settings so the back button shows up on screen where needed.
2013-05-20[Android] Redo the Settings menu, Can now change the CPU Core, dual core ↵Ryan Houdek
setting, and video backend in the settings"
2013-03-19Android mega commit of trash.Ryan Houdek