mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
0c7ea65e22
commit
ab1e4f078b
10
konva.js
10
konva.js
@ -8,7 +8,7 @@
|
|||||||
* Konva JavaScript Framework v8.2.1
|
* Konva JavaScript Framework v8.2.1
|
||||||
* http://konvajs.org/
|
* http://konvajs.org/
|
||||||
* Licensed under the MIT
|
* Licensed under the MIT
|
||||||
* Date: Fri Sep 24 2021
|
* Date: Wed Oct 06 2021
|
||||||
*
|
*
|
||||||
* 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)
|
||||||
@ -11060,6 +11060,7 @@
|
|||||||
ctx.lineTo(-length, -width / 2);
|
ctx.lineTo(-length, -width / 2);
|
||||||
ctx.closePath();
|
ctx.closePath();
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
|
this.__fillStroke(ctx);
|
||||||
}
|
}
|
||||||
if (this.pointerAtBeginning()) {
|
if (this.pointerAtBeginning()) {
|
||||||
ctx.save();
|
ctx.save();
|
||||||
@ -11079,11 +11080,10 @@
|
|||||||
ctx.lineTo(-length, -width / 2);
|
ctx.lineTo(-length, -width / 2);
|
||||||
ctx.closePath();
|
ctx.closePath();
|
||||||
ctx.restore();
|
ctx.restore();
|
||||||
|
this.__fillStroke(ctx);
|
||||||
}
|
}
|
||||||
const hasPointer = this.pointerAtEnding() || this.pointerAtBeginning();
|
}
|
||||||
if (!hasPointer) {
|
__fillStroke(ctx) {
|
||||||
return;
|
|
||||||
}
|
|
||||||
// here is a tricky part
|
// here is a tricky part
|
||||||
// we need to disable dash for arrow pointers
|
// we need to disable dash for arrow pointers
|
||||||
var isDashEnabled = this.dashEnabled();
|
var isDashEnabled = this.dashEnabled();
|
||||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user