Skip to content

Commit

Permalink
🚶 v1.1.0 already
Browse files Browse the repository at this point in the history
  • Loading branch information
食梦兽 committed Mar 9, 2017
1 parent 3a09292 commit 6e8b7f6
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 80 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

![「有干货」启动图标](https://github.com/Bakumon/UGank/raw/master/art/ic_launcher.png)

[直接下载 APk](https://raw.githubusercontent.com/Bakumon/UGank/master/apk/ugank_release_1.0.2_3.apk)
## 下载

**蒲公英下载**

![「有干货」启动图标](https://github.com/Bakumon/UGank/raw/master/art/app-qrcode-ugank.png)

[或点击去蒲公英下载](https://www.pgyer.com/ugank)
[或点击下载](https://www.pgyer.com/ugank)

## 介绍

Expand All @@ -24,7 +24,14 @@

## 版本

### v1.0.2 🆕
### v1.1.0 🆕

1. 去掉启动页,去除等待时间
2. 滑动返回
3. 缩略图质量可选
4. 去除无用资源文件,减小 Apk 体积

### v1.0.2

1. 首页左右滑动更加流畅
2. 修改bug:4.4以下版本工具栏高度问题 [#6](https://github.com/Bakumon/UGank/issues/6)
Expand All @@ -48,6 +55,8 @@
欢迎 [提 issues](https://github.com/Bakumon/UGank/issues/new),提建议或 Bug:bug:

- [x] 上拉加载效果
- [X] 滑动返回
- [x] 缩略图质量可选
- [ ] 持久化搜索历史
- [ ] ...

Expand All @@ -63,6 +72,8 @@
- [RxPermissions-6.0-运行时权限](https://github.com/tbruyelle/RxPermissions)
- [Android-RecyclerViewWithFooter-加载更多的RecyclerView ](https://github.com/android-cjj/Android-RecyclerViewWithFooter)
- [Dachshund-Tab-Layout - 扩展的 TabLayout](https://github.com/Andy671/Dachshund-Tab-Layout)
- [BGASwipeBackLayout - 滑动返回](https://github.com/bingoogolapple/BGASwipeBackLayout-Android)
- [material-dialogs - Material 风格的 Dialog](https://github.com/afollestad/material-dialogs)

## 特别鸣谢
[代码家](https://github.com/daimajia) [干货集中营](http://gank.io/) 提供 API
Expand Down
File renamed without changes.
Binary file removed apk/ugank_release_1.0.2_3.apk
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void showSearchResult() {

@Override
public void showSearchHistory() {
mLlHistory.setVisibility(View.VISIBLE);
mLlHistory.setVisibility(View.GONE);
mSwipeRefreshLayoutSearch.setVisibility(View.GONE);
}

Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
android:id="@+id/ll_search_history"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:orientation="vertical">

<LinearLayout
Expand Down Expand Up @@ -113,7 +114,7 @@
android:id="@+id/swipe_refresh_layout_search"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
>

<me.bakumon.ugank.widget.recyclerviewwithfooter.RecyclerViewWithFooter
android:id="@+id/recycler_view_search"
Expand Down
72 changes: 0 additions & 72 deletions docs/README.md

This file was deleted.

5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ ANDROID_BUILD_MIN_SDK_VERSION=15
ANDROID_BUILD_TARGET_SDK_VERSION=25
ANDROID_BUILD_SDK_VERSION=25
ANDROID_BUILD_TOOLS_VERSION=25.0.2

VERSION_NAME=1.0.2
VERSION_CODE=3
VERSION_NAME=1.1.0
VERSION_CODE=4

0 comments on commit 6e8b7f6

Please sign in to comment.