Skip to content

Commit

Permalink
v4.1 ready
Browse files Browse the repository at this point in the history
  • Loading branch information
aj3423 committed Jan 15, 2025
1 parent 2afcd4c commit cb46677
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
with:
repo_token: "${{ secrets.SYNC_TOKEN }}"
draft: false
automatic_release_tag: "v4.0"
automatic_release_tag: "v4.1"
prerelease: false
title: ""
files: |
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
applicationId = "spam.blocker"
minSdk = 29
targetSdk = 35
versionCode = 400
versionName = "4.0"
versionCode = 401
versionName = "4.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fun CallAlert() {
},
helpTooltipId = R.string.help_call_alert,
content = {
if (isEnabled && isCallLogPermissionGranted(ctx)) {
if (isEnabled) {
StrokeButton(
label = "$duration ${Str(R.string.seconds_short)}",
color = C.textGrey,
Expand Down
10 changes: 10 additions & 0 deletions metadata/en-US/changelogs/401.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
New:
- Call Alert, allow all calls after receiving some particular SMS messages, e.g.:
> (from ...) We are calling you to inform ..., please feel free to answer.

Fix:
- Crash on incoming call or text that caused by complex regex patterns.
- Crash when upgrading from ancient version.

Improvement:
- Test regex directly in the editing dialog, no more "increase priority + global testing".

0 comments on commit cb46677

Please sign in to comment.