update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2021-10-06 09:19:12 -05:00
parent 0c7ea65e22
commit ab1e4f078b
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@
* Konva JavaScript Framework v8.2.1
* http://konvajs.org/
* Licensed under the MIT
* Date: Fri Sep 24 2021
* Date: Wed Oct 06 2021
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -11060,6 +11060,7 @@
ctx.lineTo(-length, -width / 2);
ctx.closePath();
ctx.restore();
this.__fillStroke(ctx);
}
if (this.pointerAtBeginning()) {
ctx.save();
@ -11079,11 +11080,10 @@
ctx.lineTo(-length, -width / 2);
ctx.closePath();
ctx.restore();
this.__fillStroke(ctx);
}
const hasPointer = this.pointerAtEnding() || this.pointerAtBeginning();
if (!hasPointer) {
return;
}
}
__fillStroke(ctx) {
// here is a tricky part
// we need to disable dash for arrow pointers
var isDashEnabled = this.dashEnabled();

4
konva.min.js vendored

File diff suppressed because one or more lines are too long