Skip to content

Commit

Permalink
Version 2.3.1
Browse files Browse the repository at this point in the history
Ready for version 2.3.1 of Auxio.
  • Loading branch information
OxygenCobalt committed Jun 3, 2022
1 parent a396101 commit b0ec6fa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h4 align="center">A simple, rational music player for android.</h4>
<p align="center">
<a href="https://github.com/oxygencobalt/Auxio/releases/">
<img alt="GitHub release" src="https://img.shields.io/static/v1?label=Tag&message=v2.3.0&color=0D5AF5">
<img alt="GitHub release" src="https://img.shields.io/static/v1?label=Tag&message=v2.3.1&color=0D5AF5">
</a>
<a href="https://www.gnu.org/licenses/gpl-3.0">
<img src="https://img.shields.io/badge/License-GPL%20v3-blue.svg">
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ plugins {
android {
defaultConfig {
applicationId "org.oxycblt.auxio"
versionName "2.3.0"
versionCode 15
versionName "2.3.1"
versionCode 16

minSdkVersion 21
targetSdkVersion 32
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import java.util.concurrent.Executors
import java.util.concurrent.Future
import org.oxycblt.auxio.music.MusicStore
import org.oxycblt.auxio.music.Song
import org.oxycblt.auxio.util.logD
import org.oxycblt.auxio.util.logW

/**
Expand Down Expand Up @@ -114,12 +113,10 @@ class ExoPlayerBackend(private val inner: MediaStoreBackend) : Indexer.Backend {
private val onComplete: (Song) -> Unit,
) : FutureCallback<TrackGroupArray> {
override fun onSuccess(result: TrackGroupArray) {
val metadata = result[0].getFormat(0)

logD("${metadata.sampleMimeType} ${metadata.averageBitrate} ${metadata.sampleRate}")

if (metadata.metadata != null) {
completeAudio(audio, metadata.metadata!!)
val metadata = result[0].getFormat(0).metadata

if (metadata != null) {
completeAudio(audio, metadata)
} else {
logW("No metadata was found for ${audio.title}")
}
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/16.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Auxio 2.3.0 adds disc number support, full ReplayGain functionality (including positive adjustments), new sorting modes, and a variety of internal improvements. For more information, see https://github.com/OxygenCobalt/Auxio/releases/tag/v2.3.0.

This release is a patch to fix several regressions accidentally introduced in the previous version.

0 comments on commit b0ec6fa

Please sign in to comment.