Skip to content

Commit

Permalink
[Version] Update new version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tianma8023 committed Apr 29, 2019
1 parent 38daea5 commit 3f7399f
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 5 deletions.
18 changes: 18 additions & 0 deletions LOG-CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 更新日志
- 19.04.29 1.0.3
1. 新增:状态栏自定义时间颜色
2. 新增:下拉状态栏自定义时间颜色
3. 优化:优化显秒机制
3. 新增:支持英文
- 19.04.22 1.0.2
1. Bug修复:锁屏秒数适配亮暗模式
2. 新增:自定义状态栏时间对齐方式
3. 新增:自定义状态栏时间格式
4. 新增: 提供一个主开关
- 19.04.19 1.0.1
1. 优化:状态栏显秒性能优化
2. 修复:处理显秒时的秒数重复问题
3. 修复:横屏状态下下拉通知栏显秒问题
4. 新增:添加太极用户提示入口,添加支付宝捐赠入口
- 19.04.17 1.0.0
1. 第一个版本
18 changes: 18 additions & 0 deletions LOG-EN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Update Logs
- 19.04.29 1.0.3
1. New option: custom status bar clock color
2. New option: custom dropdown status bar clock color
3. Optimization: optimize the mechanism of showing seconds
4. New: support English
- 19.04.22 1.0.2
1. Bug fixes: seconds view adapt to dark mode issue
2. New: show status bar clock by its alignment.
3. New: custom statuc bar clock time format.
4. New: provide an main switch.
- 19.04.19 1.0.1
1. Optimization: improve the performance of showing seconds.
2. Bug fixes: duplicated seonds showing issue
3. Bug fixes: show seconds on notification panel on horizontal screen.
4. Add: the entry for alipay donation and taichi users notice.
- 19.04.17 1.0.0
1. First version
4 changes: 3 additions & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ MIUI10 时钟模块
- 状态栏
1. 状态栏显示秒数
2. 状态栏时间对齐方式(居左,居中,居右)
3. 自定义状态栏时间格式
3. 自定义时间格式
4. 自定义时间颜色
- 下拉状态栏
1. 时间显示秒数
2. 自定义时间,日期颜色
- 锁屏界面
1. 水平时钟显示秒数
2. 垂直时钟显示秒数
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ You can download in the following sites:
1. Show seconds in status bar clock
2. Custom clock alignment (left, center, right)
3. Custom clock time format
4. Custom clock time color
- Dropdown Status Bar
1. Show seconds in dropdown status bar clock
2. Custom clock time and date color
- Lock Screen
1. Show seconds in horizontal clock
2. Show seconds in vertical clock
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ android {
applicationId "com.tianma.tweaks.miui"
minSdkVersion 21
targetSdkVersion 27
versionCode 3
versionName "1.0.2"
versionCode 4
versionName "1.0.3"

buildConfigField("String", "LOG_TAG", "\"MiTweaks\"")
buildConfigField("String", "LOG_TAG", "\"XMiuiClock\"")
buildConfigField("boolean", "LOG_TO_XPOSED", "true")
buildConfigField("boolean", "LOG_TO_EDXPOSED", "true")
}
Expand Down Expand Up @@ -71,7 +71,7 @@ android {

applicationVariants.all { variant ->
variant.outputs.all { output ->
output.outputFileName = "MiTweaks_${variant.versionName.replaceAll('\\s+', '_')}_${releaseTime()}_${variant.buildType.name.charAt(0)}.apk"
output.outputFileName = "XMiuiClock_${variant.versionName.replaceAll('\\s+', '_')}_${releaseTime()}_${variant.buildType.name.charAt(0)}.apk"
}
}
}
Expand Down

0 comments on commit 3f7399f

Please sign in to comment.