update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2021-12-09 09:03:55 -05:00
parent caa2ec7098
commit 4d6e9e3036
3 changed files with 16 additions and 19 deletions

View File

@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## 8.3.1 (2021-12-09) ## 8.3.1 (2021-12-09)
- Fix `dbltap` event in Safari - Fix `dbltap` event in Safari
- A bit faster `node.moveToTop()` when node is already on top
- Better client rect calculations for `Konva.Arc` shape.
## 8.3.0 (2021-11-15) ## 8.3.0 (2021-11-15)

View File

@ -8,11 +8,7 @@
* Konva JavaScript Framework v8.3.0 * Konva JavaScript Framework v8.3.0
* http://konvajs.org/ * http://konvajs.org/
* Licensed under the MIT * Licensed under the MIT
<<<<<<< HEAD
* Date: Thu Dec 09 2021 * Date: Thu Dec 09 2021
=======
* Date: Thu Nov 25 2021
>>>>>>> d84e5a7d8bcd7705b142654ab6b05dbae64addfe
* *
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -3453,11 +3449,14 @@
Util.warn('Node has no parent. moveToTop function is ignored.'); Util.warn('Node has no parent. moveToTop function is ignored.');
return false; return false;
} }
var index = this.index; var index = this.index, len = this.parent.getChildren().length;
this.parent.children.splice(index, 1); if (index < len - 1) {
this.parent.children.push(this); this.parent.children.splice(index, 1);
this.parent._setChildrenIndices(); this.parent.children.push(this);
return true; this.parent._setChildrenIndices();
return true;
}
return false;
} }
/** /**
* move node up * move node up
@ -9726,9 +9725,13 @@
const DEG_TO_RAD = Math.PI / 180; const DEG_TO_RAD = Math.PI / 180;
const angle = this.angle() * DEG_TO_RAD; const angle = this.angle() * DEG_TO_RAD;
const inc = 1 * DEG_TO_RAD; const inc = 1 * DEG_TO_RAD;
let end = angle + inc;
if (this.clockwise()) {
end = 360;
}
const xs = []; const xs = [];
const ys = []; const ys = [];
for (let i = 0; i < angle + inc; i += inc) { for (let i = 0; i < end; i += inc) {
xs.push(Math.cos(i)); xs.push(Math.cos(i));
ys.push(Math.sin(i)); ys.push(Math.sin(i));
} }

10
konva.min.js vendored

File diff suppressed because one or more lines are too long