Version 2.3.1
Ready for version 2.3.1 of Auxio.
This commit is contained in:
parent
a396101bd0
commit
b0ec6faa33
4 changed files with 10 additions and 10 deletions
|
@ -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">
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
/**
|
||||
|
@ -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)
|
||||
val metadata = result[0].getFormat(0).metadata
|
||||
|
||||
logD("${metadata.sampleMimeType} ${metadata.averageBitrate} ${metadata.sampleRate}")
|
||||
|
||||
if (metadata.metadata != null) {
|
||||
completeAudio(audio, metadata.metadata!!)
|
||||
if (metadata != null) {
|
||||
completeAudio(audio, metadata)
|
||||
} else {
|
||||
logW("No metadata was found for ${audio.title}")
|
||||
}
|
||||
|
|
3
fastlane/metadata/android/en-US/changelogs/16.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/16.txt
Normal file
|
@ -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.
|
Loading…
Reference in a new issue