diff --git a/LOG-CN.md b/LOG-CN.md new file mode 100644 index 0000000..d13e034 --- /dev/null +++ b/LOG-CN.md @@ -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. 第一个版本 \ No newline at end of file diff --git a/LOG-EN.md b/LOG-EN.md new file mode 100644 index 0000000..f45baf8 --- /dev/null +++ b/LOG-EN.md @@ -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 \ No newline at end of file diff --git a/README-CN.md b/README-CN.md index 6be806d..980992e 100644 --- a/README-CN.md +++ b/README-CN.md @@ -19,9 +19,11 @@ MIUI10 时钟模块 - 状态栏 1. 状态栏显示秒数 2. 状态栏时间对齐方式(居左,居中,居右) - 3. 自定义状态栏时间格式 + 3. 自定义时间格式 + 4. 自定义时间颜色 - 下拉状态栏 1. 时间显示秒数 + 2. 自定义时间,日期颜色 - 锁屏界面 1. 水平时钟显示秒数 2. 垂直时钟显示秒数 diff --git a/README.md b/README.md index b70178a..78f0d72 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/build.gradle b/app/build.gradle index f8780ba..f3d2de9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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") } @@ -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" } } }