From b128d34e79cc0333082e4cb674da522e87f57803 Mon Sep 17 00:00:00 2001 From: Arthur Teplitzki Date: Fri, 28 Apr 2017 20:17:09 +0300 Subject: [PATCH] update version and readme --- README.md | 9 +++++++-- cropper/build.gradle | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 92ed6b9a..4c02944b 100644 --- a/README.md +++ b/README.md @@ -120,11 +120,16 @@ For more information, see the [GitHub Wiki](https://github.com/ArthurHub/Android - [Adding auto-zoom feature to Android-Image-Cropper](https://theartofdev.com/2016/04/25/adding-auto-zoom-feature-to-android-image-cropper/) ## Change log -*2.4.3* (WIP) +*2.4.3* - Adding option to omit camera intents on getPickImageChooserIntent (thx Hugo Rossi) +- Portuguese Language localization (thx Hugo Rossi) +- Removed saving bitmap into parcel in `onSaveInstanceState` to prevent `TransactionTooLargeException` + - By default nothing will happen and the view will be restored empty (if cropping image loaded using bitmap). + - Added config `SaveBitmapToInstanceState` to enable saving bitmap to temp file so it can be restored (default is false because of possible performance implications). + - Always prefer using URI to load image from cropping! - Fix restore state not restoring rotation. -- Fix initial crop window invalid position because reading previous image instance state. +- Fix initial crop window may be in invalid position because reading previous image instance state. *2.4.2* diff --git a/cropper/build.gradle b/cropper/build.gradle index c5eb0f45..54d1d78b 100644 --- a/cropper/build.gradle +++ b/cropper/build.gradle @@ -6,7 +6,7 @@ apply plugin: 'maven-publish' ext { PUBLISH_GROUP_ID = 'com.theartofdev.edmodo' PUBLISH_ARTIFACT_ID = 'android-image-cropper' - PUBLISH_VERSION = '2.4.2' + PUBLISH_VERSION = '2.4.3' // gradlew clean build generateRelease }