release: bump to 3.0.2
Bump the app version to 3.0.2 (26).
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## dev
|
## 3.0.2
|
||||||
|
|
||||||
#### What's New
|
#### What's New
|
||||||
- Added ability to play/shuffle selections
|
- Added ability to play/shuffle selections
|
||||||
|
@ -25,8 +25,7 @@ file manager
|
||||||
- Fixed duplicate song items from appearing
|
- Fixed duplicate song items from appearing
|
||||||
|
|
||||||
#### What's Changed
|
#### What's Changed
|
||||||
- Playback state schema was updates (will wipe state)
|
- Implemented new queue system (will wipe state)
|
||||||
- Implemented new queue system
|
|
||||||
|
|
||||||
#### Dev/Meta
|
#### Dev/Meta
|
||||||
- Added unit testing framework
|
- Added unit testing framework
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<h1 align="center"><b>Auxio</b></h1>
|
<h1 align="center"><b>Auxio</b></h1>
|
||||||
<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/tag/v3.0.1">
|
<a href="https://github.com/oxygencobalt/Auxio/releases/tag/v3.0.2">
|
||||||
<img alt="Latest Version" src="https://img.shields.io/static/v1?label=tag&message=v3.0.1&color=0D5AF5">
|
<img alt="Latest Version" src="https://img.shields.io/static/v1?label=tag&message=v3.0.2&color=0D5AF5">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/oxygencobalt/Auxio/releases/">
|
<a href="https://github.com/oxygencobalt/Auxio/releases/">
|
||||||
<img alt="Releases" src="https://img.shields.io/github/downloads/OxygenCobalt/Auxio/total.svg">
|
<img alt="Releases" src="https://img.shields.io/github/downloads/OxygenCobalt/Auxio/total.svg">
|
||||||
|
|
|
@ -12,8 +12,8 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId namespace
|
applicationId namespace
|
||||||
versionName "3.0.1"
|
versionName "3.0.2"
|
||||||
versionCode 25
|
versionCode 26
|
||||||
|
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
|
|
|
@ -30,6 +30,9 @@ import org.oxycblt.auxio.util.logD
|
||||||
/**
|
/**
|
||||||
* A highly customized [ItemTouchHelper.Callback] that enables some extra eye candy in the queue UI,
|
* A highly customized [ItemTouchHelper.Callback] that enables some extra eye candy in the queue UI,
|
||||||
* such as an animation when lifting items.
|
* such as an animation when lifting items.
|
||||||
|
*
|
||||||
|
* TODO: Why is item movement so expensive???
|
||||||
|
*
|
||||||
* @author Alexander Capehart (OxygenCobalt)
|
* @author Alexander Capehart (OxygenCobalt)
|
||||||
*/
|
*/
|
||||||
class QueueDragCallback(private val playbackModel: QueueViewModel) : ItemTouchHelper.Callback() {
|
class QueueDragCallback(private val playbackModel: QueueViewModel) : ItemTouchHelper.Callback() {
|
||||||
|
|
3
fastlane/metadata/android/en-US/changelogs/26.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
Auxio 3.0.0 massively improves the music library experience, with a new advanced music loader, a new unified artist model, and a new selection system that makes enqueueing music much simpler.
|
||||||
|
This release adds some additional quality of life improvements and fixes.
|
||||||
|
For more information, see https://github.com/OxygenCobalt/Auxio/releases/tag/v3.0.2.
|
Before Width: | Height: | Size: 125 KiB After Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 300 KiB |
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 164 KiB |