File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
app/src/main/play/release-notes/en-US
widget/src/main/kotlin/com/w2sv/widget Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1- [Fixed]
2- - Widget settings synchronization issues [hopefully]
3- [Improved]
4- - App performance
5- - Accessibility, including contrasts and TalkBack content descriptions
1+ [Hotfix]
2+ - Widget settings synchronization issues (maybe this time)
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ dependencies {
1919
2020 implementation libs. kotlinutils
2121 implementation libs. androidutils
22+ implementation libs. slimber
2223
2324 implementation libs. google. hilt
2425 kapt libs. google. hilt. kapt
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ android.nonTransitiveRClass=true
1111android.defaults.buildfeatures.buildconfig =true
1212android.uniquePackageNames =true
1313android.nonFinalResIds =false
14- version =1.2.11
15- versionCode =21
14+ version =1.2.20
15+ versionCode =22
Original file line number Diff line number Diff line change @@ -63,7 +63,10 @@ private fun RemoteViews.setPropertyRow(
6363 getValue : () -> String
6464) {
6565 when (display) {
66- true -> setTextViewText(valueTV, getValue())
66+ true -> {
67+ setViewVisibility(layout, View .VISIBLE )
68+ setTextViewText(valueTV, getValue())
69+ }
6770 else -> setViewVisibility(layout, View .GONE )
6871 }
6972}
You can’t perform that action at this time.
0 commit comments