summaryrefslogtreecommitdiff
path: root/Source/Android/res
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-13[Android] Explicitly set the defaults for the CPU settings.Lioncash
2013-09-13[Android] JP strings for the Fastmem option.Lioncash
2013-09-12[Android] Add a fastmem option to the cpu options, default disabled.Ryan Houdek
2013-09-07[Android] Show the full text for save and load states if there's room on the ↵Lioncash
screen. If not, let it overflow into a context menu.
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] Simplify the JP settings labels.Lioncash
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] Correct a typo for the load state menu root in the menu overlay ↵Lioncash
XML. Should be "loadStateRoot", not "loadtateRoot"
2013-09-04[Android] Remove unused strings from the resource XML files.Lioncash
2013-09-02Removal of my terrible idea.Ryan Houdek
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-29[Android] Decouple the emulation processes from the Main activity. Moved ↵Lioncash
them into their own activity called EmulationActivity.
2013-08-29[Android] Move the instantiation of the NativeGLSurfaceView into a layout ↵Lioncash
file. This will allow the addition of other components in the future, such as overlays, etc.
2013-08-29[Android] Decouple the About fragment from the FolderBrowserAdapter. Now it ↵Lioncash
uses its own independent adapter (I have no idea why this wasn't done in the first place).
2013-08-29[Android] Use the same layout for the game list and the folder browser. ↵Lioncash
Since the UI layouts are exactly the same.
2013-08-29[Android] Simplify the line divider for the folder browser and game list. ↵Lioncash
Turns out someone disabled it in the list view initially. No more custom implementation now.
2013-08-25[Android] Apparently I also forgot to commit the input menu layout.Lioncash
2013-08-25[Android] Woops forgot to commit the new resource strings.Lioncash
2013-08-24Revert "[Android] First french translation. "Lioncash
This reverts commit d2481aa477a4bf1eb0c9db19d01dd3478a5a41fa.
2013-08-24Revert "[Android] Added 2nd file for French translation. "Lioncash
This breaks the Android UI. 'translatable="false"' is there for a reason." This reverts commit 5d9700a30388ef0b20bd6a7c9a81c328f482d044.
2013-08-24[Android] Added 2nd file for French translation. pascal.jouy
(Sorry, I didn't find how to upload 2 files at the same time in Google Code)
2013-08-24[Android] First french translation. pascal.jouy
Can't try it as I don't have any Android device. Any feedback appreciated. If misplaced, please fix it.
2013-08-24[Android] Better description for the dual core option.Lioncash
2013-08-23[Android] Forgot to commit the menu layout XML when I implemented the option ↵Lioncash
to clear the game list.
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] Turns out the sidebar XML could also be simplified.Lioncash
2013-08-22[Android] Simplify the XML layout for the about menu. Remove unused strings.Lioncash
2013-08-20[Android] Missed a string for the Japanese translation.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] Load all of the new settings from the ini when the app is launched.Lioncash
- Also fix a typo in the ini saving method in UserPreferences. Accidentally spelt the ini name wrong. - Also include the relocated XML preferences. I meant to push this with the previous commit.
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-17[Android] Change the Game List items to be formatted similarly to how the ↵Lioncash
folder browser is. Also ensure the 'no banner' icon scales down to the same size as the other banners.
2013-08-14[Android] Remove a redundant LinearLayout in one of the layout files.Lioncash
2013-08-14[Android] Add a faint divider line between each folder browser item.Lioncash
See here for how it looks: http://i.imgur.com/CGX9NTt.png
2013-08-14[Android] Remove the subtitles on all folders in the folder browser. No need ↵Lioncash
to have the subtitle "Folder" when it's visibly indicated by the icon of a folder next to it. Now it looks like this: http://i.imgur.com/CbUSqgg.png
2013-08-13[Android] Main title text for the file browser items are bolded again. Must ↵Lioncash
have removed it accidentally during the previous large refactor.
2013-08-13[Android] Make the file browser look much more nice and user friendly to use.Lioncash
This is what it now looks like: http://i.imgur.com/KOZgA1i.png As usual, if any bugs arise from this rather large change. Please report it so I can fix it.
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 the OpenGL ES 3 backend video option only on devices that ↵Ryan Houdek
support it.
2013-07-11[Android] Show JIT cores based on host arch.Ryan Houdek
2013-07-07Fix ICC profiles in some of our PNGs (ic_drawer, Dolphin icon).Pierre Bourdon
Also keep a PNG version of bin2c'd resources in order to make these kind of changes easier in the future. Fixes recent versions of libpng complaining loudly about our images.
2013-06-26[Android] Make the navigation drawer not so blindingly dark.Ryan Houdek