diff --git a/README.md b/README.md
index edf642ed3..26c53c5f1 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
@@ -49,7 +49,6 @@ I primarily built Auxio for myself, but you can use it too, I guess.
- Support for disc numbers, multiple artists, release types,
precise/original dates, sort tags, and more
- Advanced artist system that unifies artists and album artists
-into a single entry
- SD Card-aware folder management
- Reliable playback state persistence
- Full ReplayGain support (On MP3, FLAC, OGG, OPUS, and MP4 files)
diff --git a/app/src/main/java/org/oxycblt/auxio/home/HomeFragment.kt b/app/src/main/java/org/oxycblt/auxio/home/HomeFragment.kt
index 8915605b2..3e6795c5a 100644
--- a/app/src/main/java/org/oxycblt/auxio/home/HomeFragment.kt
+++ b/app/src/main/java/org/oxycblt/auxio/home/HomeFragment.kt
@@ -291,9 +291,10 @@ class HomeFragment :
for (option in sortMenu) {
// Check the ascending option and corresponding sort option to align with
// the current sort of the tab.
- option.isChecked =
- option.itemId == toHighlight.mode.itemId ||
- (option.itemId == R.id.option_sort_asc && toHighlight.isAscending)
+ if (option.itemId == toHighlight.mode.itemId ||
+ (option.itemId == R.id.option_sort_asc && toHighlight.isAscending)) {
+ option.isChecked = true
+ }
// Disable options that are not allowed by the isVisible lambda
option.isVisible = isVisible(option.itemId)
diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt
index ace5331ec..e55914587 100644
--- a/fastlane/metadata/android/en-US/full_description.txt
+++ b/fastlane/metadata/android/en-US/full_description.txt
@@ -1,20 +1,21 @@
-Auxio is a local music player with a fast, reliable UI/UX without the many useless features present in other music players. Built off of Exoplayer, Auxio has a much better listening experience compared to other apps that use the native MediaPlayer API. In short, It plays music.
+Auxio is a local music player with a fast, reliable UI/UX without the many useless features present in other music players. Built off of Exoplayer, Auxio has superior library support and listening quality compared to other apps that use outdated android functionality. In short, It plays music.
Features
-- ExoPlayer based playback
+- ExoPlayer-based playback
- Snappy UI derived from the latest Material Design guidelines
- Opinionated UX that prioritizes ease of use over edge cases
- Customizable behavior
-- Advanced media indexer that prioritizes correct metadata
-- Precise/Original Dates, Sort Tags, and Release Type support (Experimental)
+- Support for disc numbers, multiple artists, release types,
+precise/original dates, sort tags, and more
+- Advanced artist system that unifies artists and album artists
- SD Card-aware folder management
- Reliable playback state persistence
-- Full ReplayGain support (On MP3, MP4, FLAC, OGG, and OPUS)
-- External equalizer functionality (In apps like Wavelet)
+- Full ReplayGain support (On MP3, FLAC, OGG, OPUS, and MP4 files)
+- External equalizer support (ex. Wavelet)
- Edge-to-edge
- Embedded covers support
-- Search Functionality
+- Search functionality
- Headset autoplay
- Stylish widgets that automatically adapt to their size
- Completely private and offline
diff --git a/fastlane/metadata/android/en-US/images/featureGraphic.png b/fastlane/metadata/android/en-US/images/featureGraphic.png
index c2e9bdc57..87fe769c5 100644
Binary files a/fastlane/metadata/android/en-US/images/featureGraphic.png and b/fastlane/metadata/android/en-US/images/featureGraphic.png differ
diff --git a/fastlane/metadata/android/en-US/images/icon.png b/fastlane/metadata/android/en-US/images/icon.png
index f8c28e99d..3edf6fb9b 100644
Binary files a/fastlane/metadata/android/en-US/images/icon.png and b/fastlane/metadata/android/en-US/images/icon.png differ