Skip to content

Commit

Permalink
feat: Update changelogs
Browse files Browse the repository at this point in the history
Signed-off-by: Hu Shenghao <dede.hu@qq.com>
  • Loading branch information
hushenghao committed Dec 3, 2024
1 parent 27c7ffd commit 34ee52e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

### v3.2.0
### v3.2.0 (2024-12-03)

- Add Android 16 preview
- Add 'Animator duration scale' check alert
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG_zh.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 更新日志

### v3.2.0
### v3.2.0 (2024-12-03)

- 添加 Android 16 预览
- 添加 ‘Animator 时长缩放’ 检查弹框
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {

defaultConfig {
applicationId = "com.dede.android_eggs"
versionCode = 54
versionCode = 55
versionName = "3.2.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/55.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- Add Android 16 preview
- Add 'Animator duration scale' check alert
- New Welcome alert UI
- Update App theme colors
- Update App monochrome logo
- Update Android release timeline dialog
- Fix Android U platlogo
- Project modularization
- Upgrade project dependencies
9 changes: 9 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/55.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- 添加 Android 16 预览
- 添加 ‘Animator 时长缩放’ 检查弹框
- 新的 欢迎弹框 样式
- 更新 App 主题色
- 更新 App 单色图标
- 更新 Android 发布时间线弹框
- 修复 Android U 彩蛋图标
- 项目模块化
- 升级项目依赖项
2 changes: 1 addition & 1 deletion script/changelogs/changelogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
OUTPUT_DIR_EN = "../../fastlane/metadata/android/en-US/changelogs"
OUTPUT_DIR_ZH = "../../fastlane/metadata/android/zh-CN/changelogs"

REGEX_VERSION_TITLE = r"^#+ v((\d|.)+).*$" # markdown version title regex, ### v1.2.3-beta01 (2024-01-01)
REGEX_VERSION_TITLE = r"^#+ v((\d|\.)+)\s*(\((\d|-)+\))?$" # markdown version title regex, ### v1.2.3 (2024-01-01)
REGEX_CHANGELOG = r"^(- .+)+$" # markdown changelog line regex
REGEX_LINK_SUB = r'\[#.+\]\(\S+\)' # markdown sub link regex

Expand Down

0 comments on commit 34ee52e

Please sign in to comment.