Skip to content

Commit 3ef33a1

Browse files
committed
1、发布1.1.0版本
1 parent 7340bf9 commit 3ef33a1

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Copyright (c) 2016. ouyangzn <email : ouyangzn@163.com>
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
#
6+
# http://www.apache.org/licenses/LICENSE-2.0
7+
#
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
114
language: android
215
android:
316
components:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 1.1.0
2+
1、增加登录功能,登录后能查看star的项目并进行收藏
3+
2、增加关于页面
4+
5+
# 1.0.0
6+
基础版本,具备查询、收藏功能

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ it's just a android client, used to search open source from github
3232
--------------------
3333
- [x] 首页改版:一种语言对应一个fragment
3434
- [ ] 全语言搜索优化
35-
- [ ] 登录github账号,导入账户star数据
35+
- [x] 登录github账号,导入账户star数据
3636
- [ ] 对star的project进行分类展示、收藏等(目前github上不能对star分类,不太方便)
3737

3838
License

app/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ apply plugin: 'org.greenrobot.greendao' // apply plugin
55

66
// 跟下面的versionName保持一致,最后一位用于紧急修复版本
77
def versionMajor = 1
8-
def versionMinor = 0
8+
def versionMinor = 1
99
def versionPatch = 0
10-
def versionBuild = 0
10+
def versionHotfix = 0
1111
android {
1212
compileSdkVersion rootProject.ext.compileSdkVersion
1313
buildToolsVersion rootProject.ext.buildToolsVersion
@@ -16,8 +16,8 @@ android {
1616
applicationId "com.ouyangzn.github"
1717
minSdkVersion rootProject.ext.minSdkVersion
1818
targetSdkVersion rootProject.ext.targetSdkVersion
19-
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
20-
versionName "1.0.0"
19+
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionHotfix
20+
versionName "1.1.0"
2121

2222
}
2323
Properties properties = new Properties()
@@ -48,10 +48,9 @@ android {
4848
}
4949
}
5050
debug {
51-
minifyEnabled false
52-
shrinkResources false
51+
minifyEnabled true
52+
shrinkResources true
5353
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
54-
signingConfig signingConfigs.release
5554
buildConfigField "boolean", "LOG_DEBUG", "true"
5655
ndk {
5756
abiFilters "armeabi-v7a"

0 commit comments

Comments
 (0)