Skip to content

Commit

Permalink
1、发布1.1.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
ouyangzn committed Jun 6, 2017
1 parent 7340bf9 commit 3ef33a1
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Copyright (c) 2016. ouyangzn <email : ouyangzn@163.com>
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

language: android
android:
components:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1.1.0
1、增加登录功能,登录后能查看star的项目并进行收藏
2、增加关于页面

# 1.0.0
基础版本,具备查询、收藏功能
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ it's just a android client, used to search open source from github
--------------------
- [x] 首页改版:一种语言对应一个fragment
- [ ] 全语言搜索优化
- [ ] 登录github账号,导入账户star数据
- [x] 登录github账号,导入账户star数据
- [ ] 对star的project进行分类展示、收藏等(目前github上不能对star分类,不太方便)

License
Expand Down
13 changes: 6 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ apply plugin: 'org.greenrobot.greendao' // apply plugin

// 跟下面的versionName保持一致,最后一位用于紧急修复版本
def versionMajor = 1
def versionMinor = 0
def versionMinor = 1
def versionPatch = 0
def versionBuild = 0
def versionHotfix = 0
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
Expand All @@ -16,8 +16,8 @@ android {
applicationId "com.ouyangzn.github"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
versionName "1.0.0"
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionHotfix
versionName "1.1.0"

}
Properties properties = new Properties()
Expand Down Expand Up @@ -48,10 +48,9 @@ android {
}
}
debug {
minifyEnabled false
shrinkResources false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
buildConfigField "boolean", "LOG_DEBUG", "true"
ndk {
abiFilters "armeabi-v7a"
Expand Down

0 comments on commit 3ef33a1

Please sign in to comment.