Skip to content

Commit 0fc0fb2

Browse files
committed
v4.15.0
1 parent 3bac686 commit 0fc0fb2

6 files changed

+36
-19
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 4.15.0
2+
3+
## Added
4+
5+
* [[PESDK-4245](https://imglysdk.atlassian.net/browse/PESDK-4245)] - Added keyboard controls for moving objects
6+
* [[PESDK-4440](https://imglysdk.atlassian.net/browse/PESDK-4440)] - Added option to EXIF operation to apply its changes to an image
7+
8+
## Fixed
9+
10+
* [[PESDK-4395](https://imglysdk.atlassian.net/browse/PESDK-4395)] - Fixed differences between WebGL and Canvas renderer when applying multiple adjustments at once
11+
* [[PESDK-4459](https://imglysdk.atlassian.net/browse/PESDK-4459)] - Fixed the export to MSBlob
12+
* [[PESDK-4485](https://imglysdk.atlassian.net/browse/PESDK-4485)] - Fixed dimension input fields by adding a minimum value to prevent 0 input
13+
14+
115
# 4.14.2
216

317
## Fixed
@@ -7,6 +21,7 @@
721
* [[PESDK-4441](https://imglysdk.atlassian.net/browse/PESDK-4441)] - Fixed the broken deserialisation on Safari and Firefox
822
* [[PESDK-4443](https://imglysdk.atlassian.net/browse/PESDK-4443)] - Fixed the unexpected movement of sprites when changing the transformation options
923

24+
1025
# 4.14.1
1126

1227
## Fixed

examples/shared/config-gui.js

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ window.addEventListener('load', function () {
4040
controllers.push(editorFolder.add(editorConfig, 'editor.enableLoad'))
4141
controllers.push(editorFolder.add(editorConfig, 'editor.enableSave'))
4242
controllers.push(editorFolder.add(editorConfig, 'editor.enableExport'))
43+
controllers.push(editorFolder.add(editorConfig, 'editor.enableKeyboardControls'))
4344
controllers.push(editorFolder.add(editorConfig, 'editor.enableZoom'))
4445
controllers.push(editorFolder.add(editorConfig, 'editor.enableDrag'))
4546

examples/shared/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ window.editorConfig = JSON.flatten({
7373
enableSave: true,
7474
enableLoad: true,
7575
enableExport: true,
76+
enableKeyboardControls: true,
7677
preferredRenderer: 'webgl',
7778
smoothUpscaling: false,
7879
smoothDownscaling: false,

js/PhotoEditorSDK.Server.js

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/PhotoEditorSDK.Server.min.js

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{
33
"name": "photoeditorsdk-server",
4-
"version": "4.14.2",
4+
"version": "4.15.0",
55
"description": "The most comprehensive photo editor SDK for Server Applications based on NodeJs",
66
"main": "index.js",
77
"repository": {

0 commit comments

Comments
 (0)