summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-06-03android: Properly pop setup fragment from the back stackCharles Lombardo
2023-06-03android: Vertically scalable setup pagesCharles Lombardo
Previously the setup pages would remain at a fixed height but now the icon and two text boxes will give up space as a device gets shorter. This eliminates the need for a scrolling view further problems with padding.
2023-06-03android: Fix setup rotation bugCharles Lombardo
If you rotated the device at the "Add Games" screen the buttons would disappear until you trigged them from the beginning page swap. Now button state is saved across recreation.
2023-06-03android: Temporarily switch for a fixed version code for testingCharles Lombardo
2023-06-03android: Fix alignment of SwipeRefreshLayoutCharles Lombardo
2023-06-03android: Shape/spacing adjustments to game cardCharles Lombardo
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.
2023-06-03android: Manual tweaks for dialog colorsCharles Lombardo
Small fix for Flam
2023-06-03android: Fix black backgrounds bugCharles Lombardo
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.
2023-06-03android: Use navigation bar shade view for settings activityCharles Lombardo
2023-06-03android: Disable editing themes during emulationCharles Lombardo
2023-06-03android: Prevent situation where binding is called on a null viewCharles Lombardo
2023-06-03android: Add black backgrounds toggleCharles Lombardo
2023-06-03android: Add theme mode pickerCharles Lombardo
2023-06-03android: Add theme pickerCharles Lombardo
2023-06-03android: Prevent potential abstract settings crashCharles Lombardo
2023-06-03android: Fix cast for abstract settingsCharles Lombardo
2023-06-03android: Create xml for Material You themeCharles Lombardo
2023-06-03android: Remove check for API 29 in themesCharles Lombardo
2023-06-03android: Adjustments to home option cardCharles Lombardo
Several spacing/color adjustments provided by Flam
2023-06-03android: Use different colors for logo in options menuCharles Lombardo
Reverting to the official logo colors
2023-06-03android: New default theme colorsCharles Lombardo
2023-06-03android: Use libnx default iconCharles Lombardo
Credit to jaames for the original icon
2023-06-03android: enable LTOLiam
2023-06-03android: Show error if invalid keys file is selectedCharles Lombardo
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.
2023-06-03android: Fix first time setup scrolling bugCharles Lombardo
If you quickly scrolled from the second page to the first and then back, the next/back buttons would disappear.
2023-06-03android: Fix A button preference keyCharles Lombardo
2023-06-03android: First time setup screenCharles Lombardo
2023-06-03android: Prevent editing unsafe settings at runtimeCharles Lombardo
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.
2023-06-03android: Abstract settingsCharles Lombardo
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!
2023-06-03android: Implement gamepad inputgerman77
2023-06-03android: Bump minimum version to Android 11Charles Lombardo
2023-06-03android: Decouple status bar shade from navigation bar visibilityCharles Lombardo
2023-06-03android: Enable code minificationCharles Lombardo
2023-06-03android: Switch from a colored status bar to a custom viewCharles Lombardo
Allows for smoother transitions with the search bar
2023-06-03android: Adjustments to card_gameCharles Lombardo
Removed a currently unused text view and moved to material text views.
2023-06-03android: MainActivity overhaulCharles Lombardo
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
2023-06-03android: Enforce Vulkan 1.1 support as minimumCharles Lombardo
2023-06-03android: Update gradle version to 8.1Charles Lombardo
2023-06-03android: Update app dependenciesCharles Lombardo
2023-06-03android: Convert gradle scripts to Kotlin DSLCharles Lombardo
2023-06-03android: vulkan: Disable vertex_input_dynamic_state on Qualcomm.bunnei
2023-06-03android: settings: Add scaling filter & anti-aliasing options. (#66)bunnei
2023-06-03android: video_core: Add support for disk shader cache. (#64)bunnei
2023-06-03android: vulkan_debug_callback: Ignore many innocuous errors.bunnei
2023-06-03android: config: Change docked mode and GPU accuracy to favor performance on ↵bunnei
Android.
2023-06-03service: account: Save user profile folder on first user creationgerman77
2023-06-03android: Initialize account managergerman77
2023-06-03android: Remove unsafe null checkgerman77
2023-06-03android: Scale input overlay independently of system display scaleCharles Lombardo
2023-06-03android: Use apply instead of commit for shared preferencesCharles Lombardo
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.