Skip to content

Commit b7e0b53

Browse files
author
Niklas Bachmann
committed
Bump version
1 parent 31f2f23 commit b7e0b53

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# PhotoEditor SDK - Changelog
22

3+
## v8.0.5
4+
5+
### Fixed
6+
* Camera do not capture an image if `doOpenEditorAfterCapture` is false.
7+
* Font icons of `TextTool` not rendered correctly on API 23 and below.
8+
* Some classes and methods are not open as in version 7.
9+
* Editor crashes when using `SaveSettings` instead of `VideoEditorSaveSettings` or `PhotoEditorSaveSettings`.
10+
11+
312
## v8.0.4
413

514
### Fixed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<img src="https://img.shields.io/badge/platform-android-2DC25C.svg?style=flat">
1717
</a>
1818
<a href="https://artifactory.img.ly/artifactory/imgly/ly/img/android/pesdk/">
19-
<img src="https://img.shields.io/badge/VERSION-8.0.4-007ec6.svg?style=flat" alt="Maven">
19+
<img src="https://img.shields.io/badge/VERSION-8.0.5-007ec6.svg?style=flat" alt="Maven">
2020
</a>
2121
<a href="http://twitter.com/PhotoEditorSDK">
2222
<img src="https://img.shields.io/badge/twitter-@PhotoEditorSDK-8646E2.svg?style=flat" alt="Twitter">
@@ -126,7 +126,7 @@ buildscript {
126126
maven { url "https://artifactory.img.ly/artifactory/imgly" }
127127
}
128128
dependencies {
129-
classpath 'ly.img.android.pesdk:plugin:8.0.4'
129+
classpath 'ly.img.android.pesdk:plugin:8.0.5'
130130
}
131131
}
132132
@@ -431,7 +431,7 @@ public class EditorDemoActivity extends Activity implements PermissionRequest.Re
431431
// Set input image
432432
settingsList.getSettingsModel(LoadSettings.class).setSource(inputImage);
433433

434-
settingsList.getSettingsModel(SaveSettings.class).setOutputToGallery(Environment.DIRECTORY_DCIM);
434+
settingsList.getSettingsModel(PhotoEditorSaveSettings.class).setOutputToGallery(Environment.DIRECTORY_DCIM);
435435

436436
new EditorBuilder(this)
437437
.setSettingsList(settingsList)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
buildscript {
44
ext.kotlin_version = '1.4.10'
5-
ext.pesdk_version = '8.0.4' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
5+
ext.pesdk_version = '8.0.5' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
66
repositories {
77
google()
88
jcenter()

0 commit comments

Comments
 (0)