From 9b0c6bdc4e8e7c6c8a7fedc04c434abbf524967d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20N=C3=A4hler?= Date: Fri, 8 Dec 2023 15:31:16 +0100 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2ad277..38f0b61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # PhotoEditor SDK - Changelog +## v10.8.2 + +### Fixed +* License check does not work when using KSP plugin. + ## v10.8.1 +### Known-Issues +* __KSP plugin is broken. Please update to 10.8.2.__ + ### Fixed * [VideoEditorSDK] Video export was limited by the frame rate limiter. * [VideoEditorSDK] When the video source changes rapidly, there may be issues with the IMGLYFileReader not waiting properly. This can lead to unexpected outcomes, such as trim start and end times not being accurate. From e9c5cbb362ef2d1d90e7ad32b5f35fe5460dffc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20N=C3=A4hler?= Date: Fri, 8 Dec 2023 15:32:06 +0100 Subject: [PATCH 2/3] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d135e36..5112ecc 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext.kotlin_version = '1.6.21' ext.ksp_version = '1.6.21-1.0.6' - ext.pesdk_version = '10.8.1' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.pesdk_version = '10.8.2' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() gradlePluginPortal() From c1342e96cd329b5ad645ccb0201dc8677382ed25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20N=C3=A4hler?= Date: Fri, 8 Dec 2023 15:32:35 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbc7faa..82175a4 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ buildscript { maven { url "https://artifactory.img.ly/artifactory/imgly" } } dependencies { - classpath 'ly.img.android.pesdk:plugin:10.8.1' + classpath 'ly.img.android.pesdk:plugin:10.8.2' classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.21-1.0.6") } }