diff --git a/CHANGELOG.md b/CHANGELOG.md index e723a7831..a04afeb75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 3.3.3 + +#### What's Fixed +- Fixed music folders not behaving correctly below Android 11 + ## 3.3.2 #### What's Fixed diff --git a/README.md b/README.md index e40ed0b5e..be40f6388 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@
-
-
+
+
diff --git a/app/build.gradle b/app/build.gradle
index 13aa46703..915f58a3e 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -21,8 +21,8 @@ android {
defaultConfig {
applicationId namespace
- versionName "3.3.2"
- versionCode 39
+ versionName "3.3.3"
+ versionCode 40
minSdk 24
targetSdk 34
diff --git a/app/src/main/java/org/oxycblt/auxio/music/fs/MediaStorePathInterpreter.kt b/app/src/main/java/org/oxycblt/auxio/music/fs/MediaStorePathInterpreter.kt
index 49c068a0b..f3a6f6aa4 100644
--- a/app/src/main/java/org/oxycblt/auxio/music/fs/MediaStorePathInterpreter.kt
+++ b/app/src/main/java/org/oxycblt/auxio/music/fs/MediaStorePathInterpreter.kt
@@ -142,7 +142,7 @@ private constructor(private val cursor: Cursor, volumeManager: VolumeManager) :
} else {
" OR ${MediaStore.Audio.AudioColumns.DATA} LIKE ?"
}
- args.add("${volume}${path.components}%")
+ args.add("/${volume}/${path.components}%")
}
if (template.isEmpty()) {
diff --git a/fastlane/metadata/android/en-US/changelogs/40.txt b/fastlane/metadata/android/en-US/changelogs/40.txt
new file mode 100644
index 000000000..190c31d23
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/40.txt
@@ -0,0 +1,3 @@
+Auxio 3.3.3 adds the ability to import and export playlists, skip gestures, and fixes/improvements to the music loader.
+This release fixes a critical bug with the music loader, among other issues.
+For more information, see https://github.com/OxygenCobalt/Auxio/releases/tag/v3.3.3
\ No newline at end of file