Skip to content

Commit

Permalink
release v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirtyDegreesRay committed Jan 2, 2018
1 parent d2e09bb commit a05e5b5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
* 支持消息通知
* 支持添加用户、版本库书签
* 自动记录浏览过过的用户和版本库
* 查看 github collections
* 查看 github 集合(collections)
* 查看 github 精选主题(featured topics)

### 版本库
* 查看版本库信息
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ An **open source** GitHub Android client app, faster and concise.
* Bookmark users or repos
* Record trace of the repos or users you have been viewed
* View github collections
* View github featured topics

### Repositories
* View repo info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ private void setUserAvatar() {
isAvatarSetted = true;
GlideApp.with(getActivity())
.load(mPresenter.getUserAvatar())
.centerCrop()
.into(userImageViewBg);
GlideApp.with(getActivity())
.load(mPresenter.getUserAvatar())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ public void showRepo(Repository repo) {

GlideApp.with(getActivity())
.load(repo.getOwner().getAvatarUrl())
.centerCrop()
.into(userImageViewBg);
} else {
noticeRepositoryUpdated(repo);
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_profile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
android:layout_height="match_parent"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.5"
android:fitsSystemWindows="true"/>
android:fitsSystemWindows="true"
android:scaleType="centerCrop"/>

<android.support.v7.widget.AppCompatImageView
android:layout_width="match_parent"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_repository.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
android:layout_height="match_parent"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.5"
android:fitsSystemWindows="true"/>
android:fitsSystemWindows="true"
android:scaleType="centerCrop"/>

<android.support.v7.widget.AppCompatImageView
android:layout_width="match_parent"
Expand Down
Binary file modified art/drawer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified art/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified art/repo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ BUILD_TOOLS_VERSION = 27.0.3
MIN_SDK_VERSION = 21
TARGET_SDK_VERSION = 27

VERSION_CODE = 21
VERSION_NAME = 2.3.0
VERSION_CODE = 22
VERSION_NAME = 2.4.0

#library
ANDROID_SUPPORT_VERSION = 27.0.2
ANDROID_SUPPORT_VERSION = 25.4.0
CONSTRAINT_VERSION = 1.0.2
MULTIDEX_VERSION = 1.0.2
DATAAUTOACCESS_VERSION = 1.2.8
Expand Down

0 comments on commit a05e5b5

Please sign in to comment.