Skip to content

Commit

Permalink
- Update libs
Browse files Browse the repository at this point in the history
- Update changelogs
- Minor cleaning
  • Loading branch information
thetwom committed Nov 14, 2021
1 parent 223f3e2 commit 7b482f8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 28 deletions.
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.4.0-beta01'
implementation 'androidx.activity:activity-ktx:1.4.0-rc01'
implementation 'androidx.fragment:fragment-ktx:1.4.0-alpha10'
implementation 'com.google.android.material:material:1.5.0-alpha05'
implementation 'androidx.appcompat:appcompat:1.4.0-rc01'
implementation 'androidx.activity:activity-ktx:1.4.0'
implementation 'androidx.fragment:fragment-ktx:1.4.0-rc01'
implementation 'com.google.android.material:material:1.5.0-beta01'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.media:media:1.4.3'
implementation 'androidx.dynamicanimation:dynamicanimation:1.1.0-alpha03'
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-rc01'
implementation 'androidx.lifecycle:lifecycle-service:2.4.0-rc01'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
implementation 'androidx.lifecycle:lifecycle-service:2.4.0'
implementation "androidx.recyclerview:recyclerview:1.2.1"
implementation "androidx.viewpager2:viewpager2:1.1.0-beta01"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'androidx.core:core-ktx:1.7.0-rc01'
implementation 'androidx.core:core-ktx:1.7.0'
}
repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ class DummyViewGroupWithTransition(context : Context, attrs : AttributeSet?, def
dummyView.layout(0, 0, 1, 1)
}

fun dummyTransition() {
// Log.v("Metronome", "DummyViewGroupWithTransition.dummyTransition")
TransitionManager.beginDelayedTransition(this,
AutoTransition().apply {
duration = 1L
}
)
if (dummyView.visibility == View.VISIBLE)
dummyView.visibility = View.GONE
else
dummyView.visibility = View.VISIBLE
}
// fun dummyTransition() {
// // Log.v("Metronome", "DummyViewGroupWithTransition.dummyTransition")
// TransitionManager.beginDelayedTransition(this,
// AutoTransition().apply {
// duration = 1L
// }
// )
// if (dummyView.visibility == View.VISIBLE)
// dummyView.visibility = View.GONE
// else
// dummyView.visibility = View.VISIBLE
// }
}
11 changes: 4 additions & 7 deletions app/src/main/java/de/moekadu/metronome/ScenesFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ import android.content.SharedPreferences
import android.graphics.Canvas
import android.graphics.drawable.Animatable
import android.os.Bundle
import android.util.Log
import android.view.*
import android.widget.TextView
import android.widget.Toast
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.widget.AppCompatImageButton
import androidx.constraintlayout.widget.ConstraintLayout
import androidx.coordinatorlayout.widget.CoordinatorLayout
import androidx.core.content.ContextCompat
import androidx.core.content.FileProvider
import androidx.fragment.app.Fragment
Expand All @@ -41,7 +39,6 @@ import androidx.preference.PreferenceManager
import androidx.recyclerview.widget.ItemTouchHelper
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.google.android.material.floatingactionbutton.FloatingActionButton
import com.google.android.material.snackbar.Snackbar
import java.io.File
import kotlin.math.absoluteValue
Expand Down Expand Up @@ -85,10 +82,10 @@ class ScenesFragment : Fragment() {
super.onItemRangeRemoved(positionStart, itemCount)
}

override fun onChanged() {
// Log.v("Metronome", "ScenesFragment: onChanged")
super.onChanged()
}
// override fun onChanged() {
//// Log.v("Metronome", "ScenesFragment: onChanged")
// super.onChanged()
// }

override fun onItemRangeChanged(positionStart: Int, itemCount: Int) {
// Log.v("Metronome", "ScenesFragment: onItemRangeChanged")
Expand Down
5 changes: 3 additions & 2 deletions fastlane/metadata/android/en-US/changelogs/45.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ v4.3.0:
- Fix: volume-slider button did not always reappear

v4.3.1:
- Slighly increase scenes in compact view of scenes
- Slighly increase player controls in scenes view
- Slightly increase scenes in compact view of scenes
- Slightly increase player controls in scenes view
- Update French translations (thanks to brilnius)

0 comments on commit 7b482f8

Please sign in to comment.