Skip to content

Commit 2b51b83

Browse files
authored
Merge pull request #1061 from OxygenCobalt/dev
v4.0.4
2 parents 2e212af + e9b3649 commit 2b51b83

4 files changed

Lines changed: 15 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<h1 align="center"><b>Auxio</b></h1>
33
<h4 align="center">A simple, rational music player for android.</h4>
44
<p align="center">
5-
<a href="https://github.com/oxygencobalt/Auxio/releases/tag/v4.0.3">
6-
<img alt="Latest Version" src="https://img.shields.io/static/v1?label=tag&message=v4.0.3&color=64B5F6&style=flat">
5+
<a href="https://github.com/oxygencobalt/Auxio/releases/tag/v4.0.4">
6+
<img alt="Latest Version" src="https://img.shields.io/static/v1?label=tag&message=v4.0.4&color=64B5F6&style=flat">
77
</a>
88
<a href="https://github.com/oxygencobalt/Auxio/releases/">
99
<img alt="Releases" src="https://img.shields.io/github/downloads/OxygenCobalt/Auxio/total.svg?color=4B95DE&style=flat">

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ android {
1818

1919
defaultConfig {
2020
applicationId namespace
21-
versionName "4.0.3"
22-
versionCode 62
21+
versionName "4.0.4"
22+
versionCode 63
2323

2424
minSdk min_sdk
2525
targetSdk target_sdk
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Auxio 4.0.0 completely overhauls the user experience, with a refreshed design based on the latest Material Design specs
2+
and a brand new music loader with signifigant improvements to device and tag support.
3+
This issue fixes several regressions from v3.6.3's functionality, primarily fixing issues related to background playback
4+
and inefficiencies/errors in the new music loader.
5+
For more information, see https://github.com/OxygenCobalt/Auxio/releases/tag/v4.0.4.

musikr/src/main/java/org/oxycblt/musikr/covers/stored/StoredCovers.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,12 @@ class MutableStoredCovers(
8282
is CoverResult.Miss -> return CoverResult.Miss()
8383
}
8484
val innerCover =
85-
coverStorage.write(memoryCover.id + transcoding.tag) {
86-
transcoding.transcodeInto(memoryCover.data(), it)
85+
try {
86+
coverStorage.write(memoryCover.id + transcoding.tag) {
87+
transcoding.transcodeInto(memoryCover.data(), it)
88+
}
89+
} catch (e: Exception) {
90+
return CoverResult.Miss()
8791
}
8892
return CoverResult.Hit(StoredCover(innerCover))
8993
}

0 commit comments

Comments
 (0)