Skip to content

Commit

Permalink
build(app): Update the application version
Browse files Browse the repository at this point in the history
build(app): 更新应用版本

Signed-off-by: gohj99 <[email protected]>
  • Loading branch information
gohj99 committed Nov 16, 2024
1 parent b04353a commit 90f1aa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
minSdk = 26
//noinspection OldTargetApi
targetSdk = 34
versionCode = 19
versionName = "1.2.8-beta2"
versionCode = 20
versionName = "1.2.9"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/gohj99/telewatch/ui/main/MainCard.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fun LinkText(
// 支持 http、https 和常见域名后缀的正则表达式
val regex = Regex(
"(?i)\\b((https?://)?[-a-zA-Z0-9@:%._+~#=]+" + // 支持协议或无协议
"\\.(com|org|net|me|io|co|edu|gov|us|uk|cn|de|jp|ru|in)" + // 常见域名后缀
"\\.(com|org|net|me|io|co|edu|gov|us|uk|cn|de|jp|ru|in|site)" + // 常见域名后缀
"([-a-zA-Z0-9@:%_+.~#?&/=]*)?)" // 路径和查询参数
)
var lastIndex = 0
Expand Down

0 comments on commit 90f1aa0

Please sign in to comment.