Version 1.4.2
Ready for version 1.4.2 of Auxio.
This commit is contained in:
parent
4b438daaf2
commit
ad2c02936a
5 changed files with 12 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
||||||
<h4 align="center">A simple, rational music player for android.</h4>
|
<h4 align="center">A simple, rational music player for android.</h4>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/oxygencobalt/Auxio/releases/">
|
<a href="https://github.com/oxygencobalt/Auxio/releases/">
|
||||||
<img alt="GitHub release" src="https://img.shields.io/static/v1?label=Tag&message=v1.4.1&color=0D5AF5">
|
<img alt="GitHub release" src="https://img.shields.io/static/v1?label=Tag&message=v1.4.2&color=0D5AF5">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.gnu.org/licenses/gpl-3.0">
|
<a href="https://www.gnu.org/licenses/gpl-3.0">
|
||||||
<img src="https://img.shields.io/badge/License-GPL%20v3-blue.svg">
|
<img src="https://img.shields.io/badge/License-GPL%20v3-blue.svg">
|
||||||
|
|
|
@ -9,8 +9,8 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.oxycblt.auxio"
|
applicationId "org.oxycblt.auxio"
|
||||||
versionName "1.4.1"
|
versionName "1.4.2"
|
||||||
versionCode 7
|
versionCode 8
|
||||||
|
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 31
|
targetSdkVersion 31
|
||||||
|
|
|
@ -42,7 +42,7 @@ import org.oxycblt.auxio.playback.state.PlaybackStateManager
|
||||||
* - For widgets 4x2 or higher, show a complete view with all playback controls
|
* - For widgets 4x2 or higher, show a complete view with all playback controls
|
||||||
*
|
*
|
||||||
* There are some minor problems with this implementation [notably UI jittering when the widget
|
* There are some minor problems with this implementation [notably UI jittering when the widget
|
||||||
* picks a new layout below Android 12], but this is tolerable.
|
* picks a new layout below Android 12], but this is tolerable. It may be improved in the future.
|
||||||
*
|
*
|
||||||
* For more specific details about these sub-widgets, see Forms.kt.
|
* For more specific details about these sub-widgets, see Forms.kt.
|
||||||
*/
|
*/
|
||||||
|
@ -140,7 +140,7 @@ class WidgetProvider : AppWidgetProvider() {
|
||||||
} else {
|
} else {
|
||||||
// Otherwise, we try our best to backport the responsive behavior to older versions.
|
// Otherwise, we try our best to backport the responsive behavior to older versions.
|
||||||
// This is mostly a guess based on RemoteView's documentation. It seems to work well
|
// This is mostly a guess based on RemoteView's documentation. It seems to work well
|
||||||
// on most launchers. It may be improved when Android 12's source is released.
|
// enough on most launchers.
|
||||||
|
|
||||||
// Each widget has independent dimensions, so we iterate through them all
|
// Each widget has independent dimensions, so we iterate through them all
|
||||||
// and do this for each.
|
// and do this for each.
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
- Added an option to pause when a song repeats
|
- Added an option to pause when a song repeats
|
||||||
- Article sort is now used everywhere
|
- Article sort is now used everywhere
|
||||||
- Fixed issues regarding playback from the lock screen
|
- Fixed issues regarding playback from the lock screen
|
||||||
- Removed the `ACCESS_NETWORK_STATE` permission
|
- Removed the ACCESS_NETWORK_STATE permission
|
||||||
|
|
6
fastlane/metadata/android/en-US/changelogs/8.txt
Normal file
6
fastlane/metadata/android/en-US/changelogs/8.txt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
- Added Widgets
|
||||||
|
- Android 12 support
|
||||||
|
- Minor UI improvements
|
||||||
|
- Fast scroller now truncates more aggressively when there is not enough space
|
||||||
|
- Fixed issue where the new about screen would be cut off in landscape mode
|
||||||
|
- Fixed issue where songs from two albums with the same year would be incorrectly shown in the artist view
|
Loading…
Reference in a new issue