Skip to content

Commit

Permalink
publish v4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycodeboy committed Jan 18, 2017
1 parent 6f48576 commit 1159b02
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@



`TakePhoto`是一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库,目前最新版本[4.0.2](https://github.com/crazycodeboy/TakePhoto/)
`TakePhoto`是一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库,目前最新版本[4.0.3](https://github.com/crazycodeboy/TakePhoto/)
3.0以下版本及API说明,详见[TakePhoto2.0+](https://github.com/crazycodeboy/TakePhoto/blob/master/README.2+.md)

>TakePhoto交流平台:QQ群:556387607(群1,未满)
Expand Down Expand Up @@ -47,7 +47,7 @@ GitHub地址: [https://github.com/crazycodeboy/TakePhoto](https://github.com/c
**Gradle:**

```groovy
compile 'com.jph.takephoto:takephoto_library:4.0.2'
compile 'com.jph.takephoto:takephoto_library:4.0.3'
```

**Maven:**
Expand All @@ -56,7 +56,7 @@ GitHub地址: [https://github.com/crazycodeboy/TakePhoto](https://github.com/c
<dependency>
<groupId>com.jph.takephoto</groupId>
<artifactId>takephoto_library</artifactId>
<version>4.0.2</version>
<version>4.0.3</version>
<type>pom</type>
</dependency>
```
Expand Down Expand Up @@ -442,8 +442,17 @@ eg:
如果你在使用TakePhoto中遇到任何问题可以提[Issues](https://github.com/crazycodeboy/TakePhoto/issues)出来。另外欢迎大家为TakePhoto贡献智慧,欢迎大家[Fork and Pull requests](https://github.com/crazycodeboy/TakePhoto)

## 更新说明
**2016/11/28**

v4.0.3(2017/1/18)
-----------------
**Bugfixes**

1. Fixed bug and add new features([`62a6725`](https://github.com/crazycodeboy/TakePhoto/commit/62a6725a99118ec0ce0f4cf1cd76b2ba70e21745))-@[Yanqilong](https://github.com/Yanqilong)
2. fix 鲁班压缩出现路径重复([`a0a64a59`](https://github.com/crazycodeboy/TakePhoto/commit/a0a64a59762fa8554eb46b6ec544f70a5d46f551))-@[namezhouyu](https://github.com/namezhouyu)


v4.0.2(2016/11/28)
------------------
1. 压缩成功后返回原图路径(originalPath), 以便用户可以自行处理原图。
2. 压缩成功后压缩路径path改为compressPath。
3. 压缩成功后返回图片来源类型,现在分CAMERA, OTHER两种。
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.android.tools.build:gradle:2.2.3'
// classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions takephoto_library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 42
versionName "4.0.2"
versionCode 43
versionName "4.0.3"
}
buildTypes {
release {
Expand Down

0 comments on commit 1159b02

Please sign in to comment.