Skip to content

Commit

Permalink
Updated ChangeLog for v1.5
Browse files Browse the repository at this point in the history
Updated ChangeLog for v1.5
  • Loading branch information
Dhaval2404 authored Oct 13, 2019
1 parent 7ae84b8 commit 25850f1
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif
```

```groovy
implementation 'com.github.dhaval2404:imagepicker:1.4'
implementation 'com.github.dhaval2404:imagepicker:1.5'
```

**If you are yet to Migrate on AndroidX, Use support build artifact:**
Expand Down Expand Up @@ -68,7 +68,7 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif
```kotlin
ImagePicker.with(this)
.crop(1f, 1f) //Crop Square image(Optional)
.crop(1f, 1f) //Crop Square image(Optional), Check Customization for more option
.compress(1024) //Final image size will be less than 1 MB(Optional)
.maxResultSize(1080, 1080) //Final image resolution will be less than 1080 x 1080(Optional)
.start()
Expand Down Expand Up @@ -155,10 +155,18 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif
```
* Crop image
```kotlin
ImagePicker.with(this)
.crop() //Crop image and let user choose aspect ratio.
.start()
* Crop image with fixed Aspect Ratio
```kotlin
ImagePicker.with(this)
.crop(16f, 9f) //Crop image with 16:9 aspect ratio
.start()
```
* Crop square image(e.g for profile)
Expand Down Expand Up @@ -207,6 +215,12 @@ Almost 90% of the app that I have developed has Image upload feature. To simplif
# ✔️Changelog
### Version: 1.5
* Fixed app crash issue, due to Camera Permission in manifest [#34](https://github.com/Dhaval2404/ImagePicker/issues/34)
* Added Option for Dynamic Crop Ratio. Let User choose aspect ratio [#36](https://github.com/Dhaval2404/ImagePicker/issues/36) (Special Thanks to [Dor-Sloim](https://github.com/Dor-Sloim))
### Version: 1.4
* Optimized Uri to File Conversion (Inspired by [Flutter ImagePicker](https://github.com/flutter/plugins/tree/master/packages/image_picker))
Expand Down

0 comments on commit 25850f1

Please sign in to comment.