Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
release:1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maoruibin committed Aug 20, 2017
1 parent babd1cb commit 4753280
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
7 changes: 4 additions & 3 deletions app/src/main/assets/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@
咕咚翻译 - 一个实现手机端『划词翻译』功能的 App,可能是目前 Android 市场上翻译效率最高的应用。
</p>

<h3>Version 1.6.0</h3>
<h3>Version 1.7.0</h3>

<ol>
<li><b> 优化:</b> 增加离线翻译支持(仅对以前查询过的单词有效)(thanks 张涛)(04-13)</li>
<li><b> 解决:</b> 循环翻译乱序问题(04-03)</li>
<li><b> 新增:</b> 输入单词自动联想提示(By <a href="https://github.com/70kg">70kg</a>)</li>
<li><b> 优化:</b> 设置页面层级以及一个错别字 </li>
<li><b> 修复:</b> 背单词时偶现的奔溃 </li>
</ol>

<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,14 @@ public void onCloseAnimEnd(Animator animation) {
});
return null;
}
});
}).error(new ReciteException());
mHideTipTask.subscribe();
}

protected class ReciteException extends Exception{

}

private void removeTipViewInner(TipView tipView) {
if (tipView.getParent() != null) {
mWindowManager.removeView(tipView);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private void initConfig() {
}

private void checkVersion() {
if (BuildConfig.DEBUG) return;
//if (BuildConfig.DEBUG) return;
mPresenter.checkVersionAndShowChangeLog();

}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<string name="tip_time_duration">提示显示时间</string>

<string name="play_sound_auto_summary">开启后,划词翻译显示结果时会自动播放单词发音。</string>
<string name="use_recite_or_nor_summary">开启后,咕咚翻译将会自动的在手机山循环浮动显示已收藏的单词,帮助你更好的记忆这些单词。</string>
<string name="use_recite_or_nor_summary">开启后,咕咚翻译将会自动的在手机上循环浮动显示已收藏的单词,帮助你更好的记忆这些单词。</string>
<string name="notify_dayline_summary">开启后,每天早晨8点,手机会为你提示学习每日一句。</string>
<string name="open_auto_paste_summary">开启后,每次打开 App 时将会自动检测粘贴板是否有单词并翻译。</string>

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ext {
minSdk : 16,
minSdk21 : 21,
targetSdk : 24,
version_code : 161,
version_name : "1.6.1"
version_code : 171,
version_name : "1.7.1"
]

libraries = [
Expand Down
5 changes: 5 additions & 0 deletions doc/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 1.7.1
* 新增: 输入单词自动联想提示(By [70kg](https://github.com/70kg) [添加单词完成自动提示 by 70kg · Pull Request \#53]
* 优化: 设置页面层级以及一个错别字 (17-08-20)
* 修复: 背单词时偶现的奔溃 (17-08-20)

## Version 1.6.1
* 优化: 增加离线翻译支持(仅对以前查询过的单词有效)(thanks 张涛)(04-13)
* 解决: 循环翻译乱序问题(04-03)
Expand Down

0 comments on commit 4753280

Please sign in to comment.