summaryrefslogtreecommitdiff
path: root/src/android (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* android: Temporarily switch for a fixed version code for testingGravatar Charles Lombardo2023-06-031-1/+1
|
* android: Fix alignment of SwipeRefreshLayoutGravatar Charles Lombardo2023-06-031-5/+9
|
* android: Shape/spacing adjustments to game cardGravatar Charles Lombardo2023-06-033-58/+64
| | | | Ripple effect now reaches into rounded corners, icon size changed, company text removed, title font adjusted, and spacing around the card was adjusted as well. Text also doesn't get cut off anymore and instead scrolls indefinitely on one line.
* android: Manual tweaks for dialog colorsGravatar Charles Lombardo2023-06-036-2/+21
| | | | Small fix for Flam
* android: Fix black backgrounds bugGravatar Charles Lombardo2023-06-031-6/+18
| | | | Start using a specific night mode check because black backgrounds could apply incorrectly when using the light app mode, dark system mode, and black backgrounds. Launching the settings activity will show light mode colors/navigation bars but with black backgrounds.
* android: Use navigation bar shade view for settings activityGravatar Charles Lombardo2023-06-032-3/+20
|
* android: Disable editing themes during emulationGravatar Charles Lombardo2023-06-031-3/+3
|
* android: Prevent situation where binding is called on a null viewGravatar Charles Lombardo2023-06-031-0/+3
|
* android: Add black backgrounds toggleGravatar Charles Lombardo2023-06-036-1/+42
|
* android: Add theme mode pickerGravatar Charles Lombardo2023-06-035-11/+76
|
* android: Add theme pickerGravatar Charles Lombardo2023-06-037-3/+127
|
* android: Prevent potential abstract settings crashGravatar Charles Lombardo2023-06-031-0/+4
|
* android: Fix cast for abstract settingsGravatar Charles Lombardo2023-06-034-5/+5
|
* android: Create xml for Material You themeGravatar Charles Lombardo2023-06-032-0/+58
|
* android: Remove check for API 29 in themesGravatar Charles Lombardo2023-06-032-15/+4
|
* android: Adjustments to home option cardGravatar Charles Lombardo2023-06-031-4/+10
| | | | Several spacing/color adjustments provided by Flam
* android: Use different colors for logo in options menuGravatar Charles Lombardo2023-06-032-3/+3
| | | | Reverting to the official logo colors
* android: New default theme colorsGravatar Charles Lombardo2023-06-032-30/+34
|
* android: Use libnx default iconGravatar Charles Lombardo2023-06-034-1/+1
| | | | Credit to jaames for the original icon
* android: enable LTOGravatar Liam2023-06-031-1/+2
|
* android: Show error if invalid keys file is selectedGravatar Charles Lombardo2023-06-032-0/+23
| | | | There aren't MIME types specific enough for filtering out files that aren't amiibo or production keys. So here we just check for the extensions "bin" or "keys" where appropriate and stop the process if incorrect. Previously you could select any document and it could cause the app to hang.
* android: Fix first time setup scrolling bugGravatar Charles Lombardo2023-06-032-18/+17
| | | | If you quickly scrolled from the second page to the first and then back, the next/back buttons would disappear.
* android: Fix A button preference keyGravatar Charles Lombardo2023-06-031-1/+1
|
* android: First time setup screenGravatar Charles Lombardo2023-06-0319-163/+769
|
* android: Prevent editing unsafe settings at runtimeGravatar Charles Lombardo2023-06-035-14/+35
| | | | There currently isn't a visual "disabled" cue for any of the view holders that aren't the switch setting. This will be improved in the future.
* android: Abstract settingsGravatar Charles Lombardo2023-06-0324-363/+418
| | | | Previously we could only add settings that would change our ini file. Now we can create abstract settings in our presenter to alter things like shared preferences for theme support!
* android: Implement gamepad inputGravatar german772023-06-036-11/+510
|
* android: Bump minimum version to Android 11Gravatar Charles Lombardo2023-06-031-1/+1
|
* android: Decouple status bar shade from navigation bar visibilityGravatar Charles Lombardo2023-06-033-14/+34
|
* android: Enable code minificationGravatar Charles Lombardo2023-06-035-22/+18
|
* android: Switch from a colored status bar to a custom viewGravatar Charles Lombardo2023-06-034-23/+35
| | | | Allows for smoother transitions with the search bar
* android: Adjustments to card_gameGravatar Charles Lombardo2023-06-031-20/+5
| | | | Removed a currently unused text view and moved to material text views.
* android: MainActivity overhaulGravatar Charles Lombardo2023-06-0332-626/+1031
| | | | | | This moves several parts of the main activity into fragments that manage themselves to react to changes. UI changes like the appearance of a new search view or when the games list changes now gets updated via multiple view models. This also starts a conversion to the androidx navigation component which furthers the goals mentioned previously with more fragment responsibility. This will eventually allow us to use one activity with interchanging fragments and multiple view models that are stored within that central activity. fdas
* android: Enforce Vulkan 1.1 support as minimumGravatar Charles Lombardo2023-06-031-3/+4
|
* android: Update gradle version to 8.1Gravatar Charles Lombardo2023-06-031-1/+1
|
* android: Update app dependenciesGravatar Charles Lombardo2023-06-031-5/+5
|
* android: Convert gradle scripts to Kotlin DSLGravatar Charles Lombardo2023-06-035-201/+241
|
* android: settings: Add scaling filter & anti-aliasing options. (#66)Gravatar bunnei2023-06-034-0/+75
|
* android: video_core: Add support for disk shader cache. (#64)Gravatar bunnei2023-06-0312-4/+258
|
* android: config: Change docked mode and GPU accuracy to favor performance on ↵Gravatar bunnei2023-06-033-7/+11
| | | | Android.
* android: Initialize account managerGravatar german772023-06-031-0/+5
|
* android: Remove unsafe null checkGravatar german772023-06-031-4/+2
|
* android: Scale input overlay independently of system display scaleGravatar Charles Lombardo2023-06-032-30/+41
|
* android: Use apply instead of commit for shared preferencesGravatar Charles Lombardo2023-06-033-4/+3
| | | | Previously we were operating on the assumption that apply'd settings wouldn't be visible immediately. This isn't true and settings will be accessible via memory before being stored to disk. This reduces any potential stutters caused by saving to shared preferences.
* android: Add DPad slide toggleGravatar Charles Lombardo2023-06-035-2/+14
|
* android: Add relative stick center toggleGravatar Charles Lombardo2023-06-033-0/+13
|
* android: Make hash and branch accessible from BuildConfigGravatar Charles Lombardo2023-06-031-0/+25
|
* android: Backup shared preferences where applicableGravatar Charles Lombardo2023-06-032-0/+12
|
* android: Enable retaining app data after uninstallGravatar Charles Lombardo2023-06-031-1/+2
|
* android: Remove unused doFrame functionGravatar Charles Lombardo2023-06-031-2/+0
|