Skip to content

Commit

Permalink
release "5.4.9"
Browse files Browse the repository at this point in the history
  • Loading branch information
sdex committed Feb 14, 2024
1 parent fabf1e1 commit 51d3e3d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 5.4.9 (14 Feb 2024)
- update shortcut activity to match the app's style
- add more links to about screen
- update translations

## 5.4.8 (7 Feb 2024)
- avoid duplicates in a shortcut name suggestions
- add filter bottom sheet drag handle
Expand Down
6 changes: 2 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = "com.activitymanager"
minSdk = 21
targetSdk = 34
versionCode = 548
versionName = "5.4.8"
versionCode = 549
versionName = "5.4.9"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -63,9 +63,7 @@ android {
}

buildFeatures {
buildConfig = false
viewBinding = true
dataBinding = false
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/sdex/activityrunner/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class MainActivity : BaseActivity() {

binding.progress.show()

if (appPreferences.showDonate && appPreferences.appOpenCounter > 5) {
if (appPreferences.showDonate && appPreferences.appOpenCounter > 10) {
showDonateSnackbar()
}
}
Expand Down
3 changes: 3 additions & 0 deletions metadata/en-US/changelogs/549.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- update shortcut activity to match the app's style
- add more links to about screen
- update translations

0 comments on commit 51d3e3d

Please sign in to comment.