Update markdown
Update markdown in preperation for 1.3.2
|
@ -11,8 +11,8 @@ android {
|
||||||
applicationId "org.oxycblt.auxio"
|
applicationId "org.oxycblt.auxio"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 3
|
versionCode 4
|
||||||
versionName "1.3.1"
|
versionName "1.3.2"
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
dataBinding true
|
dataBinding true
|
||||||
|
@ -62,7 +62,7 @@ dependencies {
|
||||||
// General
|
// General
|
||||||
implementation 'androidx.core:core-ktx:1.3.2'
|
implementation 'androidx.core:core-ktx:1.3.2'
|
||||||
implementation 'androidx.activity:activity-ktx:1.3.0-alpha04'
|
implementation 'androidx.activity:activity-ktx:1.3.0-alpha04'
|
||||||
implementation 'androidx.fragment:fragment-ktx:1.3.1'
|
implementation 'androidx.fragment:fragment-ktx:1.3.0' // Don't upgrade until they fix the launcher issue
|
||||||
|
|
||||||
// Layout
|
// Layout
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||||
|
|
|
@ -9,7 +9,6 @@ import android.content.Intent
|
||||||
import android.content.IntentFilter
|
import android.content.IntentFilter
|
||||||
import android.content.pm.ServiceInfo
|
import android.content.pm.ServiceInfo
|
||||||
import android.media.AudioManager
|
import android.media.AudioManager
|
||||||
import android.media.MediaPlayer
|
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import android.os.PowerManager
|
import android.os.PowerManager
|
||||||
|
|
|
@ -5,7 +5,8 @@ buildscript {
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter() // TODO: Remove JCenter when Exoplayer migrates
|
||||||
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -22,6 +23,7 @@ allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
mavenCentral()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
7
fastlane/metadata/android/en-US/changelogs/4.txt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
- Added the ability to exclude directories from indexing
|
||||||
|
- Accents have been redone to improve visibility/UI simplicity
|
||||||
|
- Enabled wake lock functionality
|
||||||
|
- Fixed issue where the artist genre would display incorrectly
|
||||||
|
- Fixed issue where AudioFocus would begin playback spontaneously
|
||||||
|
- Fixed issue where AudioFocus would not restore volume to 100% after ducking
|
||||||
|
- Fixed issues with the playback restore process (Current state will be wiped on update)
|
Before Width: | Height: | Size: 157 KiB After Width: | Height: | Size: 157 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 159 KiB After Width: | Height: | Size: 159 KiB |
Before Width: | Height: | Size: 163 KiB After Width: | Height: | Size: 163 KiB |
Before Width: | Height: | Size: 223 KiB After Width: | Height: | Size: 225 KiB |
Before Width: | Height: | Size: 268 KiB After Width: | Height: | Size: 268 KiB |
Before Width: | Height: | Size: 189 KiB After Width: | Height: | Size: 189 KiB |
Before Width: | Height: | Size: 303 KiB After Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 114 KiB |
|
@ -50,7 +50,7 @@ org.oxycblt.auxio # Main UI's and logging utilities
|
||||||
│ └──.viewholders # Shared ViewHolders and ViewHolder utilities
|
│ └──.viewholders # Shared ViewHolders and ViewHolder utilities
|
||||||
├──.search # Search UI
|
├──.search # Search UI
|
||||||
├──.settings # Settings UI and systems
|
├──.settings # Settings UI and systems
|
||||||
│ ├──.blacklist # Excluded Directories/Systems
|
│ ├──.blacklist # Excluded Directories UI/Systems
|
||||||
│ └──.ui # Contains UI's related to the settings view, such as the about screen
|
│ └──.ui # Contains UI's related to the settings view, such as the about screen
|
||||||
├──.songs # Songs UI
|
├──.songs # Songs UI
|
||||||
└──.ui # Shared user interface utilities
|
└──.ui # Shared user interface utilities
|
||||||
|
|