summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
AgeCommit message (Collapse)Author
2023-10-01Android: Add more GameCube controller typesJosJuice
For all your PSO needs.
2023-10-01Android: Get profile name from coreJosJuice
To avoid duplicating information between Kotlin and C++.
2023-09-23Android: Use 0.5 unit step size and show decimal for numeric settingsCharles Lombardo
In some settings where the default value could not be evenly divided by the step size for the slider, there would be a crash. This increases the precision of all double numeric settings to 0.5 and now shows the decimal that you couldn't see before.
2023-09-20Android: Use custom image loader for game coversCharles Lombardo
This fixes a bug where custom cover loading was initiated but would finish by the time another image view would be in the place of the previous one.
2023-09-03Android: Get rid of unnecessary nullability in features.settingsJosJuice
2023-09-03Merge pull request #12153 from JosJuice/android-iso-paths-jniJosJuice
Android: Use JNI for setting/getting ISO paths
2023-09-02Android: Use JNI for setting/getting ISO pathsJosJuice
This gets rid of the last Android-specific code that directly interfaces with INI files.
2023-09-02Android: Remove all uses of Any from SliderSettingJosJuice
This makes casting unnecessary, preventing the kind of type error we just had from occurring in the future.
2023-09-02Android: Fix controller float sliders crashingJosJuice
By not setting a stepSize, stepSize was getting set to the default value of 0, which is an Int. This later caused a crash when trying to cast it to Float.
2023-08-30Merge pull request #12095 from t895/color-space-settingsCharles Lombardo
Android: Expose color space settings
2023-08-29Android: Support settings with float valuesCharles Lombardo
We did support float settings before but we never showed anything past the decimal place before.
2023-08-29Android: Expose color correction settingsCharles Lombardo
2023-08-28Merge pull request #12119 from ThunderousEcho/feature/latching-buttonsCharles Lombardo
Added latching buttons (Android)
2023-08-27Added latching buttonsCharles Oliner
Added latching buttons, buttons which turn on when you press them and off when you press them again.
2023-08-26Merge pull request #11919 from t895/kotlin-controlsJosJuice
Android: Convert "features.input" package to Kotlin
2023-08-25Android: Convert TvSettingsItem to KotlinCharles Lombardo
2023-08-25Android: Convert HomeScreenChannel to KotlinCharles Lombardo
2023-08-25Android: Convert GameFileCache to KotlinCharles Lombardo
2023-08-25Android: Convert GameFile to KotlinCharles Lombardo
2023-08-25Android: Convert InputMappingControlSettingViewHolder to KotlinCharles Lombardo
2023-08-25Android: Convert ProfileViewHolder to KotlinCharles Lombardo
2023-08-25Android: Convert ProfileDialogPresenter to KotlinCharles Lombardo
2023-08-25Android: Convert ProfileAdapter to KotlinCharles Lombardo
2023-08-25Android: Convert MotionAlertDialog to KotlinCharles Lombardo
2023-08-25Android: Convert AdvancedMappingDialog to KotlinCharles Lombardo
2023-08-25Android: Convert AdvancedMappingControlViewHolder to KotlinCharles Lombardo
2023-08-25Android: Convert AdvancedMappingControlAdapter to KotlinCharles Lombardo
2023-08-25Android: Convert InputMappingControlSetting to KotlinCharles Lombardo
2023-08-25Android: Convert InputDeviceSetting to KotlinCharles Lombardo
2023-08-25Android: Convert MappingCommon to KotlinCharles Lombardo
2023-08-25Android: Convert InputOverrider to KotlinCharles Lombardo
2023-08-25Android: Convert InputMappingIntSetting to KotlinCharles Lombardo
2023-08-25Android: Convert InputMappingDoubleSetting to KotlinCharles Lombardo
2023-08-25Android: Convert InputMappingBooleanSetting to KotlinCharles Lombardo
2023-08-25Android: Convert DolphinVibratorManagerPassthrough to KotlinCharles Lombardo
2023-08-25Android: Convert DolphinVibratorManagerCompat to KotlinCharles Lombardo
2023-08-25Android: Convert DolphinVibratorManager to KotlinCharles Lombardo
2023-08-25Android: Convert DolphinSensorEventListener to KotlinCharles Lombardo
2023-08-25Android: Convert ControllerInterface to KotlinCharles Lombardo
2023-08-25Android: Convert NumericSetting to KotlinCharles Lombardo
2023-08-25Android: Convert CoreDevice to KotlinCharles Lombardo
2023-08-25Android: Convert EmulatedController to KotlinCharles Lombardo
2023-08-25Android: Convert ControlReference to KotlinCharles Lombardo
2023-08-25Android: Convert ControlGroup to KotlinCharles Lombardo
2023-08-25Android: Convert Control to KotlinCharles Lombardo
2023-08-25Android: Convert ControlGroupEnabledSetting to KotlinCharles Lombardo
2023-08-15Android: Move DirectoryInitialization toast to UI threadJosJuice
You're not allowed to just show toasts on any thread you want.
2023-07-28Android: Fix SettingsActivity.onActivityResultJosJuice
`or` is the bitwise or operator. Fixes file pickers in the settings not saving your choice.
2023-07-21Add Enable WiiLink checkbox to Android GUISketchMaster2001
2023-06-28Merge pull request #11989 from JosJuice/android-title-on-shutdownCharles Lombardo
Android: Handle game shutdown in onTitleChanged