Skip to content

Commit

Permalink
Release 2.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Drjacky committed Jun 22, 2022
1 parent eb716c7 commit d8b5ed4
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 18 deletions.
51 changes: 37 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
# ✔️Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.1.16] - 2022-06-22

* Improve document on how to provide both camera and gallery
* List other gallery apps on gallery choose mode
* Handle an exception on creating a new file while trying to crop the image
* Add Russian translation
* Add Italy(italian) translation

## [2.1.15] - 2021-11-16

* Update internal dependencies
* Improve support for front camera
* Target SDK 31
* Update internal dependencies
* Improve support for front camera
* Target SDK 31

## [2.1.14] - 2021-10-20

* Migrate to Kotlin 1.5.31
* Migrate to Kotlin 1.5.31
* Update internal dependencies
* Fix an issue if image is corrupted
* Add Bengali translation
Expand Down Expand Up @@ -227,24 +236,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Replace white screen with transparent one.

## [1.0] - 2019-02-11

### Added
* Pick Gallery Image
* Capture Camera Image
* Crop Image(Its based on [uCrop](https://github.com/Yalantis/uCrop))
* Compress Image(Compress image based on resolution and size)
* 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.15...HEAD

* Pick Gallery Image
* Capture Camera Image
* Crop Image(Its based on [uCrop](https://github.com/Yalantis/uCrop))
* Compress Image(Compress image based on resolution and size)
* 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.16...HEAD

[2.1.16]: https://github.com/Drjacky/ImagePicker/compare/v2.1.15...v2.1.16

[2.1.15]: https://github.com/Drjacky/ImagePicker/compare/v2.1.14...v2.1.15

[2.1.14]: https://github.com/Drjacky/ImagePicker/compare/v2.1.13...v2.1.14

[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

[2.1.8]: https://github.com/Drjacky/ImagePicker/compare/v2.1.7...v2.1.8

[2.1.7]: https://github.com/Drjacky/ImagePicker/compare/v2.1.6...v2.1.7

[2.1.6]: https://github.com/Drjacky/ImagePicker/compare/v2.0.6...v2.1.6
[2.0.6]: https://github.com/Drjacky/ImagePicker/compare/v2.0.5...v2.0.6
[2.0.5]: https://github.com/Drjacky/ImagePicker/compare/v2.0.4...v2.0.5
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ Where `$libVersion` = [![libVersion](https://img.shields.io/github/release/drjac
ImagePicker.Companion.with(this)
.crop()
.cropOval()
.maxResultSize(512, 512, true)
.createIntentFromDialog((Function1) (new Function1() {
.maxResultSize(512,512,true)
.provider(ImageProvider.BOTH) //Or bothCameraGallery()
.createIntentFromDialog((Function1)(new Function1(){
public Object invoke(Object var1) {
this.invoke((Intent) var1);
return Unit.INSTANCE;
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 = 35
versionName = '2.1.15'
versionCode = 36
versionName = '2.1.16'
}

repositories {
Expand Down

0 comments on commit d8b5ed4

Please sign in to comment.