All Versions
156
Latest Version
Avg Release Cycle
164 days
Latest Release
820 days ago
Changelog History
Page 16
Changelog History
Page 16
-
v0.12.2 Changes
March 31, 2016๐ Fixed
- repair
cancelBubble
event property behaviour - ๐ fix wrong
Path
getClientRect()
calculation - ๐ better HDPI support
- ๐ better typescript definitions
- ๐ node 0.12 support
๐ Changed
- more universal stage container selector
mousewheel
event changed towheel
- repair
-
v0.11.1 Changes
January 16, 2016๐ Fixed
- ๐ correct
Konva.Arrow
drawing. Now it works better. - ๐ Better support for dragging when mouse out of stage
- ๐ Better corner radius for
Label
shape contentTap
event for stage
โ Added
- event delegation. You can use it in this way:
layer.on('click', 'Circle', handler);
- ๐ new
node.findAncestors(selector)
andnode.findAncestor(selector)
functions - optional selector parameter for
stage.getIntersection
andlayer.getIntersection
- โ show warning message if several instances of Konva are added to page.
๐ Changed
- ๐
moveTo
and some other methods returnthis
- ๐
getAbsolutePosition
support optional relative parent argument (useful to find absolute position inside of some of parent nodes) change
event will be not fired if changed value is the same as old value
- ๐ correct
-
v0.10.0 Changes
October 27, 2015โ Added
- RGBA filter. Thanks to @codefo
- ๐
stroke
andfill
support forKonva.Sprite
๐ Fixed
- Correct calculation in
getClientRect
method ofKonva.Line
andKonva.Container
. - Correct
toObject()
behaviour for node with attrs with extended native prototypes - ๐ Fixed bug for caching where buffer canvas is required
๐ Changed
- ๐ Dragging works much better. If your pointer is out of stage content dragging will still continue.
Konva.Node.create
now works with objects.- ๐
Konva.Tween
now supports tweening points to state with different length
-
v0.9.5 Changes
May 28, 2015๐ Fixed
to
will not throw error if noonFinish
callback- ๐ HDPI support for desktop
- ๐ Fix bug when filters are not correct for HDPI
- ๐ Fix bug when hit area is not correct for HDPI
- ๐ Fix bug for incorrect
getClientRect
calculation - Repair fill gradient for text
๐ Changed
- context wrapper is more capable with native context.
So you can use
context.fillStyle
property in yoursceneFunc
without accessing native context. toDataURL
now handles pixelRatio. you can passconfig.pixelRatio
argument- ๐ฏ Correct
clone()
for custom nodes FastLayer
can now have transforms- ๐
stage.toDataURL()
method now works synchronously. Socallback
argument is not required. - ๐
container.find(selector)
method now has a validation step. So if you forgot to add#
or.
you will see a warning message in the console.
โ Added
- ๐ new
Konva.Image.fromURL
method
๐ Deprecated
- ๐
fillRed
,fillGreen
,fillBlue
,fillAlpha
are deprecated. Usefill
instead. - ๐
strokeRed
,strokeGreen
,strokeBlue
,strokeAlpha
are deprecated. Usestroke
instead. - ๐
shadowRed
,shadowGreen
,shadowBlue
,shadowAlpha
are deprecated. Useshadow
instead. - ๐
dashArray
is deprecated. Usedash
instead. - ๐
drawFunc
is deprecated. UsesceneFunc
instead. - ๐
drawHitFunc
is deprecated. UsehitFunc
instead. - ๐
rotateDeg
is deprecated. Userotate
instead.
-
v0.9.0 Changes
February 27, 2015๐ Fixed
- โก๏ธ cache algorithm has A LOT OF updates.
๐ Changed
scale
now affectsshadowOffset
- ๐ performance optimization (remove some unnecessary draws)
- more expected drawing when shape has opacity, stroke and shadow
- HDPI for caching.
- ๐ Cache should work much better. Now you don't need to pass bounding box {x,y,width,height} to
cache
method for all buildin Konva shapes. (only for your customKonva.Shape
instance). - ๐
Tween
now supports color properties (fill
,stroke
,shadowColor
)
โ Added
- ๐ new methods for working with node's name:
addName
,removeName
,hasName
. - new
perfectDrawEnabled
property for shape. See http://konvajs.org/docs/performance/Disable_Perfect_Draw.html - ๐ new
shadowForStrokeEnabled
property for shape. See http://konvajs.org/docs/performance/All_Performance_Tips.html - ๐ new
getClientRect
method. - ๐ new
to
method for every node for shorter tweening
-
v0.8.0 Changes
February 04, 2015- ๐ Bug Fixes
- browser crashing on pointer events fixed
- optimized
getIntersection
function
- โจ Enhancements
container.findOne()
method- new
strokeHitEnabled
property. Useful for performance optimizations - typescript definitions. see
/resources/konva.d.ts
- ๐ Bug Fixes