Skip to content

Commit d8b5ed4

Browse files
committed
Release 2.1.16
1 parent eb716c7 commit d8b5ed4

File tree

3 files changed

+42
-18
lines changed

3 files changed

+42
-18
lines changed

CHANGELOG.md

Lines changed: 37 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
# ✔️Changelog
2+
23
All notable changes to this project will be documented in this file.
34

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

78
## [Unreleased]
89

10+
## [2.1.16] - 2022-06-22
11+
12+
* Improve document on how to provide both camera and gallery
13+
* List other gallery apps on gallery choose mode
14+
* Handle an exception on creating a new file while trying to crop the image
15+
* Add Russian translation
16+
* Add Italy(italian) translation
17+
918
## [2.1.15] - 2021-11-16
1019

11-
* Update internal dependencies
12-
* Improve support for front camera
13-
* Target SDK 31
20+
* Update internal dependencies
21+
* Improve support for front camera
22+
* Target SDK 31
1423

1524
## [2.1.14] - 2021-10-20
1625

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

229238
## [1.0] - 2019-02-11
239+
230240
### Added
231-
* Pick Gallery Image
232-
* Capture Camera Image
233-
* Crop Image(Its based on [uCrop](https://github.com/Yalantis/uCrop))
234-
* Compress Image(Compress image based on resolution and size)
235-
* Handle Runtime Permission for Camera and Storage
236-
* Retrieve Image Result as File, File Path as String or Uri object
237-
238-
[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.1.15...HEAD
241+
242+
* Pick Gallery Image
243+
* Capture Camera Image
244+
* Crop Image(Its based on [uCrop](https://github.com/Yalantis/uCrop))
245+
* Compress Image(Compress image based on resolution and size)
246+
* Handle Runtime Permission for Camera and Storage
247+
* Retrieve Image Result as File, File Path as String or Uri object
248+
249+
[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.1.16...HEAD
250+
251+
[2.1.16]: https://github.com/Drjacky/ImagePicker/compare/v2.1.15...v2.1.16
252+
239253
[2.1.15]: https://github.com/Drjacky/ImagePicker/compare/v2.1.14...v2.1.15
254+
240255
[2.1.14]: https://github.com/Drjacky/ImagePicker/compare/v2.1.13...v2.1.14
256+
241257
[2.1.13]: https://github.com/Drjacky/ImagePicker/compare/v2.1.12...v2.1.13
258+
242259
[2.1.12]: https://github.com/Drjacky/ImagePicker/compare/v2.1.11...v2.1.12
260+
243261
[2.1.11]: https://github.com/Drjacky/ImagePicker/compare/v2.1.10...v2.1.11
262+
244263
[2.1.10]: https://github.com/Drjacky/ImagePicker/compare/v2.1.9...v2.1.10
264+
245265
[2.1.9]: https://github.com/Drjacky/ImagePicker/compare/v2.1.8...v2.1.9
266+
246267
[2.1.8]: https://github.com/Drjacky/ImagePicker/compare/v2.1.7...v2.1.8
268+
247269
[2.1.7]: https://github.com/Drjacky/ImagePicker/compare/v2.1.6...v2.1.7
270+
248271
[2.1.6]: https://github.com/Drjacky/ImagePicker/compare/v2.0.6...v2.1.6
249272
[2.0.6]: https://github.com/Drjacky/ImagePicker/compare/v2.0.5...v2.0.6
250273
[2.0.5]: https://github.com/Drjacky/ImagePicker/compare/v2.0.4...v2.0.5

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ Where `$libVersion` = [![libVersion](https://img.shields.io/github/release/drjac
9191
ImagePicker.Companion.with(this)
9292
.crop()
9393
.cropOval()
94-
.maxResultSize(512, 512, true)
95-
.createIntentFromDialog((Function1) (new Function1() {
94+
.maxResultSize(512,512,true)
95+
.provider(ImageProvider.BOTH) //Or bothCameraGallery()
96+
.createIntentFromDialog((Function1)(new Function1(){
9697
public Object invoke(Object var1) {
9798
this.invoke((Intent) var1);
9899
return Unit.INSTANCE;

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
buildscript {
33
ext {
44
kotlin_version = '1.5.31'
5-
versionCode = 35
6-
versionName = '2.1.15'
5+
versionCode = 36
6+
versionName = '2.1.16'
77
}
88

99
repositories {

0 commit comments

Comments
 (0)