update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2021-08-04 15:56:59 +07:00
parent 5d45d4666f
commit 7f52e8a203
4 changed files with 16 additions and 4 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 8.1.2
- Fix memory leak for `Konva.Image`
## 8.1.1
- Fix `Konva.Transformer` dragging draw when `shouldOverdrawWholeArea = true`.

View File

@ -8,7 +8,7 @@
* Konva JavaScript Framework v8.1.1
* http://konvajs.org/
* Licensed under the MIT
* Date: Thu Jul 01 2021
* Date: Wed Aug 04 2021
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -11586,6 +11586,14 @@
}
_setImageLoad() {
const image = this.image();
// check is image is already loaded
if (image && image.complete) {
return;
}
// check is video is already loaded
if (image && image.readyState === 4) {
return;
}
if (image && image['addEventListener']) {
image['addEventListener']('load', () => {
this._requestDraw();

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -45,7 +45,7 @@ export class Image extends Shape<ImageConfig> {
this._setImageLoad();
}
_setImageLoad() {
const image = this.image();
const image = this.image() as any;
// check is image is already loaded
if (image && image.complete) {
return;