Skip to content

Commit 105e5eb

Browse files
author
Niklas Bachmann
committed
Bump version
1 parent df38e8c commit 105e5eb

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

CHANGELOG.md

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

3+
## v8.1.1
4+
5+
### Fixed
6+
* `NetworkOnMainThreadException` while reading or writing serialization. (Please make sure to read and write the serialization only from a WorkerThread.)
7+
* Out-of-index OpenGL warnings thrown by some GPU drivers.
8+
* `pesdk_editor_button_somethingWentWrongCloseEditor` string value was never used by the `imgly_popup_error_dialog.xml`.
9+
10+
311
## v8.1.0
412

513
### Improved

README.md

Lines changed: 2 additions & 2 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.1.0-007ec6.svg?style=flat" alt="Maven">
19+
<img src="https://img.shields.io/badge/VERSION-8.1.1-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.1.0'
129+
classpath 'ly.img.android.pesdk:plugin:8.1.1'
130130
}
131131
}
132132

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
buildscript {
44
ext.kotlin_version = '1.4.10'
5-
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
5+
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
66
repositories {
77
google()
8-
jcenter()
8+
gradlePluginPortal()
99
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
10-
1110
}
1211
dependencies {
13-
classpath 'com.android.tools.build:gradle:4.0.1'
12+
classpath 'com.android.tools.build:gradle:4.0.2'
1413
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1514

1615
// NOTE: Do not place your application dependencies here; they belong
@@ -24,7 +23,8 @@ buildscript {
2423
allprojects {
2524
repositories {
2625
google()
27-
jcenter()
26+
mavenCentral()
27+
gradlePluginPortal()
2828
}
2929
}
3030

default_res_files/v_8_1/res/layout/imgly_popup_error_dialog.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
style="@style/Imgly.PESDK.Editor.Popup.Error.ButtonContainer">
3333
<Button
3434
android:id="@+id/agreeButton"
35-
android:text="Close"
35+
android:text="@string/pesdk_editor_button_somethingWentWrongCloseEditor"
3636
style="@style/Imgly.PESDK.Editor.Popup.Error.Button.Agree"/>
3737
</LinearLayout>
3838
</LinearLayout>

0 commit comments

Comments
 (0)