Skip to content

Commit 1bb352d

Browse files
committed
v1.7.3 Released
Change Log: - Fixed PNG image saved as JPG after crop issue
1 parent 2aa70df commit 1bb352d

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.7.3] - 2020-07-18
10+
### Changed
11+
* Fixed PNG image saved as JPG after crop issue [#94](https://github.com/Dhaval2404/ImagePicker/issues/94)
12+
913
## [1.7.2] - 2020-07-14
1014
### Changed
1115
* Fixed .crop() opening gallery or camera twice [#32](https://github.com/Dhaval2404/ImagePicker/issues/32)
@@ -66,9 +70,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6670
* Crop Image(Its based on [uCrop](https://github.com/Yalantis/uCrop))
6771
* Compress Image(Compress image based on resolution and size)
6872
* Handle Runtime Permission for Camera and Storage
69-
* Retrive Image Result as File, File Path as String or Uri object
73+
* Retrieve Image Result as File, File Path as String or Uri object
7074

7175
[Unreleased]: https://github.com/Dhaval2404/ImagePicker/compare/v2.0...HEAD
76+
[1.7.3]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.2...v1.7.3
7277
[1.7.2]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.1...v1.7.2
7378
[1.7.1]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7...v1.7.1
7479
[1.7]: https://github.com/Dhaval2404/ImagePicker/compare/v1.6...v1.7

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
5454
```
5555

5656
```groovy
57-
implementation 'com.github.dhaval2404:imagepicker:1.7.2'
57+
implementation 'com.github.dhaval2404:imagepicker:1.7.3'
5858
```
5959

6060
**If you are yet to Migrate on AndroidX, Use support build artifact:**
@@ -270,9 +270,12 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
270270
271271
* Added option to limit MIME types while choosing a gallery image (Special Thanks to [Marchuck](https://github.com/Marchuck))
272272
* Introduced ImageProviderInterceptor, Can be used for analytics (Special Thanks to [Marchuck](https://github.com/Marchuck))
273+
* Fixed .crop() opening gallery or camera twice [#32](https://github.com/Dhaval2404/ImagePicker/issues/32)
273274
* Fixed FileProvider of the library clashes with the FileProvider of the app [#51](https://github.com/Dhaval2404/ImagePicker/issues/51) (Special Thanks to [OyaCanli](https://github.com/OyaCanli))
274275
* Added option to set Storage Directory [#52](https://github.com/Dhaval2404/ImagePicker/issues/52)
275276
* Fixed NullPointerException in FileUriUtils.getPathFromRemoteUri() [#61](https://github.com/Dhaval2404/ImagePicker/issues/61) (Special Thanks to [himphen](https://github.com/himphen))
277+
* Fixed UCropActivity Crash Android 4.4 (KiKat) [#82](https://github.com/Dhaval2404/ImagePicker/issues/82)
278+
* Fixed PNG image saved as JPG after crop issue [#94](https://github.com/Dhaval2404/ImagePicker/issues/94)
276279
277280
### Version: 1.6
278281

imagepicker/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 19
1515
targetSdkVersion 28
16-
versionCode 10
17-
versionName "1.7.2"
16+
versionCode 11
17+
versionName "1.7.3"
1818

1919
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020
}
@@ -72,7 +72,7 @@ ext {
7272
siteUrl = 'https://github.com/Dhaval2404/ImagePicker/'
7373
gitUrl = 'https://github.com/Dhaval2404/ImagePicker.git'
7474

75-
libraryVersion = '1.7.2'
75+
libraryVersion = '1.7.3'
7676
//If you are uploading new library try : gradlew install
7777
//If you are updating existing library then execute: gradlew bintrayUpload
7878
//In both the case don't forgot to put bintray credentials in local.properties file.

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId "com.github.dhaval2404.imagepicker.sample"
1313
minSdkVersion 19
1414
targetSdkVersion 28
15-
versionCode 10
16-
versionName "1.7.2"
15+
versionCode 11
16+
versionName "1.7.3"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
vectorDrawables.useSupportLibrary = true
1919
}

0 commit comments

Comments
 (0)