Skip to content

Commit f5aaece

Browse files
committed
完成1.2.2版本
1 parent 5e0c72a commit f5aaece

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
minSdkVersion 18
1010
targetSdkVersion 23
1111
resValue "string", "tray__authority", "${applicationId}.tray"
12-
versionCode 4
13-
versionName "1.2.1"
12+
versionCode 5
13+
versionName "1.2.2"
1414
}
1515

1616
signingConfigs {

app/src/main/java/com/hardwork/fg607/relaxfinger/SettingActivity.java

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -311,26 +311,21 @@ public void developerInfo(){
311311

312312
AlertDialog dialog = new AlertDialog.Builder(this).create();
313313
dialog.setTitle("关于RelaxFinger");
314-
dialog.setMessage("版本:v1.2.1\r\n作者:fg607\r\n邮箱:fg607@sina.com");
314+
dialog.setMessage("版本:v1.2.2\r\n作者:fg607\r\n邮箱:fg607@sina.com");
315315
dialog.show();
316316
}
317317

318318
public void showUpdateInfo(){
319319

320320
AlertDialog dialog = new AlertDialog.Builder(this).create();
321-
dialog.setTitle("RelaxFinger-1.2.1版本更新内容");
321+
dialog.setTitle("RelaxFinger-1.2.2版本更新内容");
322322
dialog.setCancelable(true);
323-
dialog.setMessage("1.添加自动避让软键盘功能\r\n" +
324-
"(4.4版本以上并且安装两个以上输入法时有效)\r\n" +
325-
"2.添加通知栏开启关闭设置\r\n" +
326-
"3.添加悬浮球主题设置\r\n" +
327-
"4.添加悬浮球透明度设置\r\n" +
328-
"5.添加灭屏休眠功能\r\n" +
329-
"6.添加屏幕截屏功能\r\n" +
330-
"7.添加音量调节功能\r\n" +
331-
"8.修复自由移动失效问题\r\n" +
332-
"9.修复内存不足导致设置界面重叠问题\r\n" +
333-
"10.优化内存占用\r\n");
323+
dialog.setCanceledOnTouchOutside(true);
324+
dialog.setMessage("1.添加快捷菜单弹出背景变暗效果,点击任意位置关闭。\r\n" +
325+
"2.横屏下悬浮球进入自由模式,可自由移动,切换回竖屏后恢复原有状态。\r\n" +
326+
"3.打开输入法同样会进入自由模式,关闭后复原。\r\n" +
327+
"4.手势功能添加'无操作'选项。\r\n" +
328+
"5.优化部分机型截屏声音过大问题。\r\n");
334329
dialog.show();
335330

336331
}

0 commit comments

Comments
 (0)