Skip to content

Commit

Permalink
[Version] Update version to 1.0.9(10)
Browse files Browse the repository at this point in the history
[Others] Change App name.
  • Loading branch information
tianma8023 committed May 31, 2019
1 parent 0baf3bf commit 7b71d1e
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 13 deletions.
3 changes: 3 additions & 0 deletions LOG-CN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 更新日志
- 19.05.31 1.0.9
1. 新增可选项:下拉显示天气
2. 修复:信号左移时位置偏上的问题
- 19.05.27 1.0.8
1. 修复:9.5.7 之前信号居左失效问题
2. 修复:9.5.7 之前信号双层显示失效问题
Expand Down
3 changes: 3 additions & 0 deletions LOG-EN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Update Logs
- 19.05.31 1.0.9
1. New option: show weather info in dropdown status bar.
2. Bug fixes: align top & left issue about mobile signal icons.
- 19.05.27 1.0.8
1. Bug fixes: signal align left invalid issue before MIUI 10 9.5.7
2. Bug fixes: dual mobile signal invalid issue before MIUI 10 9.5.7
Expand Down
8 changes: 6 additions & 2 deletions README-CN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MIUI 时钟模块
MIUI10 时钟模块
# XMiTools
MIUI 10 系统界面模块

[English README](/README-EN.md)
# 效果截图
Expand All @@ -21,9 +21,13 @@ MIUI10 时钟模块
2. 状态栏时间对齐方式(居左,居中,居右)
3. 自定义时间格式
4. 自定义时间颜色
5. 信号居左
6. 信号双层显示
7. 自定义显示的移动网络类型
- 下拉状态栏
1. 时间显示秒数
2. 自定义时间,日期颜色
3. 显示天气信息
- 锁屏界面
1. 水平时钟显示秒数
2. 垂直时钟显示秒数
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# XMiuiClock
An xposed module for MIUI 10 SystemUI clock.
An xposed module for MIUI 10 SystemUI.

[中文说明](/README-CN.md)
# Screenshots
Expand All @@ -21,9 +21,13 @@ You can download in the following sites:
2. Custom clock alignment (left, center, right)
3. Custom clock time format
4. Custom clock time color
5. Signal icons align left
6. Display dual mobile signals
7. Custom displayed mobile network type
- Dropdown Status Bar
1. Show seconds in dropdown status bar clock
2. Custom clock time and date color
3. Show weather info
- 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,15 +15,15 @@ android {
applicationId "com.tianma.tweaks.miui"
minSdkVersion 21
targetSdkVersion 27
versionCode 9
versionName "1.0.8"
versionCode 10
versionName "1.0.9"

buildConfigField("String", "LOG_TAG", "\"XMiuiClock\"")
buildConfigField("String", "LOG_TAG", "\"XMiTools\"")
buildConfigField("boolean", "LOG_TO_XPOSED", "true")
buildConfigField("boolean", "LOG_TO_EDXPOSED", "true")
}

lintOptions{
lintOptions {
disable 'MissingTranslation'
}

Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/com/tianma/tweaks/miui/cons/AppConst.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ public interface AppConst {

/* MiTweaks begin */
String MAIN_ACTIVITY_ALIAS = BuildConfig.APPLICATION_ID + ".app.MainActivityAlias";
String PROJECT_SOURCE_CODE_URL = "https://github.com/tianma8023/XMiuiClock";
String PROJECT_SOURCE_CODE_URL = "https://github.com/tianma8023/XMiTools";

String X_MIUI_CLOCK_PREFS_NAME = BuildConfig.APPLICATION_ID + "_preferences";
/* MiTweaks end */


/* Alipay begin */
String ALIPAY_PACKAGE_NAME = "com.eg.android.AlipayGphone";
String ALIPAY_QRCODE_URI_PREFIX = "alipayqr://platformapi/startapp?saId=10000007&qrcode=";
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">MIUI10 时钟模块</string>
<string name="app_name">XMiTools</string>

<string name="xposed_description">MIUI10 时钟模块</string>
<string name="xposed_description">MIUI10 模块</string>

<string name="cancel">取消</string>
<string name="confirm">确认</string>
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>
<string name="app_name">XMiuiClock</string>
<string name="app_name">XMiTools</string>

<string name="xposed_description">MIUI 10 Clock Module</string>
<string name="xposed_description">MIUI 10 Module</string>

<string name="cancel">Cancel</string>
<string name="confirm">Confirm</string>
Expand Down

0 comments on commit 7b71d1e

Please sign in to comment.