File tree Expand file tree Collapse file tree
fastlane/metadata/android/en-US/changelogs
musikr/src/main/java/org/oxycblt/musikr/covers/stored Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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">
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments