meta: update descriptions

Update the README and fastlane metadata in preparation for 2.1.0.
This commit is contained in:
OxygenCobalt 2022-01-28 18:02:25 -07:00
parent d540773664
commit 50b2cabf8b
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
5 changed files with 9 additions and 5 deletions

View file

@ -0,0 +1 @@
Auxio 2.1.0 enhances the playback experience, implementing a single-queue system, ReplayGain functionality, and better support on older devices. For more information, please read the full changelog at https://github.com/OxygenCobalt/Auxio/releases/tag/v2.0.0.

View file

@ -4,13 +4,13 @@ Auxio is a local music player with a fast, reliable UI/UX without the many usele
- ExoPlayer based playback - ExoPlayer based playback
- Customizable UI & Behavior - Customizable UI & Behavior
- Genres/Artists/Albums/Songs support - Genres/Artists/Albums/Songs indexing
- Intuitive queue system
- Reliable playback state persistence - Reliable playback state persistence
- Material You support (12+ only) - ReplayGain support (On MP3, FLAC, OGG, and OPUS)
- Edge-to-edge (8.1+ Only) - Material You (Android 12+ only)
- Edge-to-edge
- Embedded covers support - Embedded covers support
- Search Functionality - Search Functionality
- Audio/Headset focus - Audio/Headset focus
- Completely private and offline - Completely private and offline
- No rounded album covers - No rounded album covers (Unless you want them. Then you can.)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 KiB

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 152 KiB

View file

@ -91,13 +91,16 @@ extractor_aar_path = os.path.join(
exoplayer_path, "library", "extractor", "buildout", exoplayer_path, "library", "extractor", "buildout",
"outputs", "aar", "library-extractor-release.aar" "outputs", "aar", "library-extractor-release.aar"
) )
flac_ext_aar_path = os.path.join( flac_ext_aar_path = os.path.join(
exoplayer_path, "extensions", "flac", "buildout", exoplayer_path, "extensions", "flac", "buildout",
"outputs", "aar", "extension-flac-release.aar" "outputs", "aar", "extension-flac-release.aar"
) )
os.chdir(exoplayer_path) os.chdir(exoplayer_path)
sh("./gradlew library-extractor:bundleReleaseAar") sh("./gradlew library-extractor:bundleReleaseAar")
sh("./gradlew extension-flac:bundleReleaseAar") sh("./gradlew extension-flac:bundleReleaseAar")
os.chdir(start_path) os.chdir(start_path)
sh("mkdir " + libs_path) sh("mkdir " + libs_path)
sh("cp " + extractor_aar_path + " " + libs_path) sh("cp " + extractor_aar_path + " " + libs_path)