Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Bachmann committed Mar 22, 2021
1 parent df38e8c commit 105e5eb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# PhotoEditor SDK - Changelog

## v8.1.1

### Fixed
* `NetworkOnMainThreadException` while reading or writing serialization. (Please make sure to read and write the serialization only from a WorkerThread.)
* Out-of-index OpenGL warnings thrown by some GPU drivers.
* `pesdk_editor_button_somethingWentWrongCloseEditor` string value was never used by the `imgly_popup_error_dialog.xml`.


## v8.1.0

### Improved
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.1.0-007ec6.svg?style=flat" alt="Maven">
<img src="https://img.shields.io/badge/VERSION-8.1.1-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.1.0'
classpath 'ly.img.android.pesdk:plugin:8.1.1'
}
}
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

buildscript {
ext.kotlin_version = '1.4.10'
ext.pesdk_version = '8.1.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '8.1.1' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
jcenter()
gradlePluginPortal()
maven { url 'https://artifactory.img.ly/artifactory/imgly' }

}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -24,7 +23,8 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
style="@style/Imgly.PESDK.Editor.Popup.Error.ButtonContainer">
<Button
android:id="@+id/agreeButton"
android:text="Close"
android:text="@string/pesdk_editor_button_somethingWentWrongCloseEditor"
style="@style/Imgly.PESDK.Editor.Popup.Error.Button.Agree"/>
</LinearLayout>
</LinearLayout>
Expand Down

0 comments on commit 105e5eb

Please sign in to comment.