Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Drjacky committed Oct 20, 2021
1 parent 999afa8 commit e3428ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [2.1.14] - 2021-10-20

* Migrate to Kotlin 1.5.31
* Update internal dependencies
* Fix an issue if image is corrupted
* Add Bengali translation
Expand Down Expand Up @@ -228,7 +229,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Handle Runtime Permission for Camera and Storage
* Retrieve Image Result as File, File Path as String or Uri object

[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.1.11...HEAD
[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.1.13...HEAD
[2.1.13]: https://github.com/Drjacky/ImagePicker/compare/v2.1.12...v2.1.13
[2.1.12]: https://github.com/Drjacky/ImagePicker/compare/v2.1.11...v2.1.12
[2.1.11]: https://github.com/Drjacky/ImagePicker/compare/v2.1.10...v2.1.11
[2.1.10]: https://github.com/Drjacky/ImagePicker/compare/v2.1.9...v2.1.10
[2.1.9]: https://github.com/Drjacky/ImagePicker/compare/v2.1.8...v2.1.9
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![PRWelcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Drjacky/ImagePicker/pulls)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgh.neting.cc%2FDrjacky%2FImagePicker.svg?type=shield)](https://app.fossa.com/projects/git%2Bgh.neting.cc%2FDrjacky%2FImagePicker?ref=badge_shield)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ImagePicker-green.svg?style=flat)](https://android-arsenal.com/details/1/8208)
![Language](https://img.shields.io/badge/Kotlin-1.5.21-blue)
![Language](https://img.shields.io/badge/Kotlin-1.5.31-blue)

Easy to use and configurable library to **Pick an image from the Gallery or Capture image using Camera**. It also allows to **Crop the Image based on Aspect Ratio, Resolution and Image Size**.

Expand Down Expand Up @@ -213,14 +213,6 @@ Where `$libVersion` = [![libVersion](https://img.shields.io/github/release/drjac
.createIntent()
```

* You can also specify the request code with ImagePicker

```kotlin
ImagePicker.with(this)
.maxResultSize(620, 620)
.start(101) //Here 101 is request code, you may use this in onActivityResult
```

* Add Following parameters in your **colors.xml** file, If you want to customize uCrop Activity.

```xml
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
buildscript {
ext {
kotlin_version = '1.5.31'
versionCode = 33
versionName = '2.1.13'
versionCode = 34
versionName = '2.1.14'
}

repositories {
Expand Down

0 comments on commit e3428ab

Please sign in to comment.