Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Bachmann committed Feb 11, 2021
1 parent 71bbb03 commit 8f381a6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# PhotoEditor SDK - Changelog

## v8.0.9

### Fixed
* The app freezes when the export finishes while the editor is in the background.
* The `hasChanges` flag is true if the user changes something but revert it.
* This can result in exports even if nothing has changed.
* The Editor preview is broken after export.
* The @throws annotation of some methods are broken since v8.0.0 because of internal kotlin changes.
* Video export progress is wrong if export is trimmed.
* The `TransformTool` opens even if there is a `CropAspectAsset` which fits the aspect ratio and the `ForceCrop.SHOW_TOOL_WHEN_CROP_UNMATCHED` is selected.
* Videos with odd width or height of the crop results in a crash and an endless loop while exporting.

### Added
* Overridable `onExportDone(result: EditorSDKResult) : Boolean` in EditorActivity, allows to exports multiple times.
* Overridable `onExportStart(stateHandler: StateHandler)` in EditorActivity, allows to change settings before starting to export.


## v8.0.8

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<img src="https://img.shields.io/badge/platform-android-2DC25C.svg?style=flat">
</a>
<a href="https://artifactory.img.ly/artifactory/imgly/ly/img/android/pesdk/">
<img src="https://img.shields.io/badge/VERSION-8.0.7-007ec6.svg?style=flat" alt="Maven">
<img src="https://img.shields.io/badge/VERSION-8.0.9-007ec6.svg?style=flat" alt="Maven">
</a>
<a href="http://twitter.com/PhotoEditorSDK">
<img src="https://img.shields.io/badge/[email protected]?style=flat" alt="Twitter">
Expand Down Expand Up @@ -126,7 +126,7 @@ buildscript {
maven { url "https://artifactory.img.ly/artifactory/imgly" }
}
dependencies {
classpath 'ly.img.android.pesdk:plugin:8.0.7'
classpath 'ly.img.android.pesdk:plugin:8.0.9'
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext.kotlin_version = '1.4.10'
ext.pesdk_version = '8.0.8' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '8.0.9' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
jcenter()
Expand Down

0 comments on commit 8f381a6

Please sign in to comment.