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

Commit

Permalink
Merge pull request #52 from maoruibin/develop
Browse files Browse the repository at this point in the history
release 1.6.1
  • Loading branch information
maoruibin authored May 3, 2017
2 parents ec5a4a8 + 9be9c2d commit 61172b7
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 21 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
![shot](http://7xr9gx.com1.z0.glb.clouddn.com/gd.gif)

## 待完成功能
* 单词显示框支持沉浸式,覆盖状态栏显示。
* 使用 Github 做自动更新
* ~~不支持谷歌翻译,如果有人有兴趣添加谷歌,必应翻译,欢迎PR。~~
* ~~单词发音~~
* ~~显示单词信息时增加音标~~
* ~~生词本为空时的提示信息~~
- [ ] 单词显示框支持沉浸式,覆盖状态栏显示。
- [ ] 使用 Github 做自动更新
- [x] 不支持谷歌翻译,如果有人有兴趣添加谷歌,必应翻译,欢迎PR。
- [x] 单词发音
- [x] 显示单词信息时增加音标
- [x] 生词本为空时的提示信息

`Note:`想要参与贡献代码的同学,请在 develop 分支上操作,欢迎参与,可以提前在 issue 中交流自己要修改的功能模块,同时也欢迎来[Google+社区](https://plus.google.com/u/1/communities/111919086388322816251)一起讨论 咕咚翻译。

Expand Down Expand Up @@ -61,6 +61,9 @@ Google+ [咕咚翻译社群](https://plus.google.com/u/1/communities/11191908638
## 更新日志
[日志列表](./doc/Changelog.md)

## 捐赠
[咕咚翻译捐赠](http://gudong.name/1990/03/01/list_pay.html)

## 关于作者

咕咚,爱折腾、爱新鲜,爱篮球。
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/assets/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@
如果你喜欢咕咚翻译,也许你还会喜欢我的其他作品。
</p>
<ol>
<li><b><a href="http://fir.im/appplus">AppPlus</a></b>一个可以用于传送、提取APK文件等的工具软件。</li>
<li><b><a href="http://fir.im/gankdaily">GankDaily</a></b> 干货客户端,用于查看每天的技术干货</li>
<li><b><a href="http://www.coolapk.com/apk/name.gudong.easypaper">易剪</a></b>一个 Android 手机上的剪报助手。</li>
<li><b><a href="http://www.coolapk.com/apk/com.gudong.appkit">AppPlus</a></b>一个可以用于传送、提取APK文件等的工具软件。</li>
<li><b><a href="http://www.coolapk.com/apk/com.gudong.gankio">GankDaily</a></b> 干货客户端,用于查看每天的技术干货</li>
</ol>

</body>
12 changes: 2 additions & 10 deletions app/src/main/assets/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,8 @@
<h3>Version 1.6.0</h3>

<ol>
<li><b>修复:</b> 诸多奔溃异常问题(04-02)</li>
<li><b>优化:</b> 翻译失败增加当前翻译引擎提示(04-02)</li>
</ol>

<h3>Version 1.5.5</h3>

<ol>
<li><b>修复:</b> 循环背单词次序停留在末尾的bug(03-16)</li>
<li><b>优化:</b> 翻译结果的文字大小以及颜色(加深)(03-13)</li>
<li><b>修复:</b> 导出单词失败的问题(03-03)</li>
<li><b> 优化:</b> 增加离线翻译支持(仅对以前查询过的单词有效)(thanks 张涛)(04-13)</li>
<li><b> 解决:</b> 循环翻译乱序问题(04-03)</li>
</ol>

<p>
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/assets/donate_ch.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
点击下面的按钮 打开支付宝,即可转账打赏,再次感谢你的支持。
</p>

<a onclick="clickThanksWords()" href="#">更多关于捐赠者的话</a>
<a href="http://gudong.name/1990/03/01/list_pay.html">咕咚翻译捐赠名单</a>
<a onclick="clickThanksWords()" href="#" style="display:none">更多关于捐赠者的话</a>
</body>
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,27 @@

import com.facebook.stetho.okhttp3.StethoInterceptor;

import java.io.IOException;
import java.util.concurrent.TimeUnit;

import javax.inject.Singleton;

import dagger.Module;
import dagger.Provides;
import name.gudong.translate.BuildConfig;
import name.gudong.translate.GDApplication;
import name.gudong.translate.mvp.model.ApiBaidu;
import name.gudong.translate.mvp.model.ApiGoogle;
import name.gudong.translate.mvp.model.ApiJinShan;
import name.gudong.translate.mvp.model.ApiYouDao;
import name.gudong.translate.mvp.model.SingleRequestService;
import name.gudong.translate.mvp.model.type.ETranslateFrom;
import okhttp3.Cache;
import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
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 : 160,
version_name : "1.6.0"
version_code : 161,
version_name : "1.6.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.6.1
* 优化: 增加离线翻译支持(仅对以前查询过的单词有效)(thanks 张涛)(04-13)
* 解决: 循环翻译乱序问题(04-03)
* 优化: 增加捐赠清单链接(05-03)

## Version 1.6.0
* 修复: 诸多奔溃异常问题(04-02)
* 优化: 翻译失败增加当前翻译引擎提示(04-02)
Expand Down

0 comments on commit 61172b7

Please sign in to comment.