Skip to content

Commit

Permalink
Fix properties settings; 1.2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Apr 12, 2023
1 parent ec834fa commit e9deabe
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 2 additions & 5 deletions app/src/main/play/release-notes/en-US/production.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
[Fixed]
- Widget settings synchronization issues [hopefully]
[Improved]
- App performance
- Accessibility, including contrasts and TalkBack content descriptions
[Hotfix]
- Widget settings synchronization issues (maybe this time)
1 change: 1 addition & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ dependencies {

implementation libs.kotlinutils
implementation libs.androidutils
implementation libs.slimber

implementation libs.google.hilt
kapt libs.google.hilt.kapt
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -11,5 +11,5 @@ android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=true
android.uniquePackageNames=true
android.nonFinalResIds=false
version=1.2.11
versionCode=21
version=1.2.20
versionCode=22
5 changes: 4 additions & 1 deletion widget/src/main/kotlin/com/w2sv/widget/PropertySetting.kt
Original file line number Diff line number Diff line change
@@ -63,7 +63,10 @@ private fun RemoteViews.setPropertyRow(
getValue: () -> String
) {
when (display) {
true -> setTextViewText(valueTV, getValue())
true -> {
setViewVisibility(layout, View.VISIBLE)
setTextViewText(valueTV, getValue())
}
else -> setViewVisibility(layout, View.GONE)
}
}

0 comments on commit e9deabe

Please sign in to comment.