Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 10.9.0 #112

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# PhotoEditor SDK - Changelog
## v10.9.0

### Fixed
* [KSP-PLUGIN] Event-System is not working correctly in some cases, when using KSP Plugin.
* [GRADLE-PLUGIN] KSP Plugin does not work on newer Gradle versions.
* [GRADLE-PLUGIN] KAPT and KSP Plugin detection is not working correctly.
* Images and icons occasionally fail to load.
* Performance degradation during the loading of numerous images.

### Improved
* Better runtime and build-time error messages for configuration issues.
* New Syntax for IMG.LY plugin configuration. Please use `IMGLY.configure { }` instead of `imglyConfig { }`, you will receive errors when you are using the new syntax the wrong way.

### Breaking Changes
* 🚨 [GRADLE-PLUGIN] Significant modifications have been implemented that will affect a minor segment of our customer base. Should your build process encounter errors, it is recommended to consult the build output for detailed information.

## v10.8.2

### Fixed
Expand All @@ -24,7 +40,6 @@
* ConfigLoader (React Native, Cordova/Ionic)
* `personalVideoClips` is not disabled correctly if the video library is not used.
* Kotlin 1.9.0+ compatibility issues, by using KSP.
* Change

### Changed
* 🚨 Minimum compileSdkVersion version of the `ui:camera` and `backend:camera` module is now 33
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'ly.img.android.sdk'
apply plugin: 'kotlin-android'
apply plugin: 'com.google.devtools.ksp'

imglyConfig {
IMGLY.configure {

pesdk {
enabled true
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.2' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '10.9.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
gradlePluginPortal()
Expand Down
Loading