All Versions
156
Latest Version
Avg Release Cycle
164 days
Latest Release
669 days ago

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 to wheel
  • 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) and node.findAncestor(selector) functions
    • optional selector parameter for stage.getIntersection and layer.getIntersection
    • โš  show warning message if several instances of Konva are added to page.

    ๐Ÿ”„ Changed

    • ๐Ÿšš moveTo and some other methods return this
    • ๐Ÿ‘ 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
  • v0.10.0 Changes

    October 27, 2015

    โž• Added

    • RGBA filter. Thanks to @codefo
    • ๐Ÿ‘ stroke and fill support for Konva.Sprite

    ๐Ÿ›  Fixed

    • Correct calculation in getClientRect method of Konva.Line and Konva.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 no onFinish 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 your sceneFunc without accessing native context.
    • toDataURL now handles pixelRatio. you can pass config.pixelRatio argument
    • ๐Ÿ‘ฏ Correct clone() for custom nodes
    • FastLayer can now have transforms
    • ๐Ÿ”€ stage.toDataURL() method now works synchronously. So callback 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. Use fill instead.
    • ๐Ÿ—„ strokeRed, strokeGreen, strokeBlue, strokeAlpha are deprecated. Use stroke instead.
    • ๐Ÿ—„ shadowRed, shadowGreen, shadowBlue, shadowAlpha are deprecated. Use shadow instead.
    • ๐Ÿ—„ dashArray is deprecated. Use dash instead.
    • ๐Ÿ—„ drawFunc is deprecated. Use sceneFunc instead.
    • ๐Ÿ—„ drawHitFunc is deprecated. Use hitFunc instead.
    • ๐Ÿ—„ rotateDeg is deprecated. Use rotate instead.
  • v0.9.0 Changes

    February 27, 2015

    ๐Ÿ›  Fixed

    • โšก๏ธ cache algorithm has A LOT OF updates.

    ๐Ÿ”„ Changed

    • scale now affects shadowOffset
    • ๐ŸŽ 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 custom Konva.Shape instance).
    • ๐Ÿ‘ Tween now supports color properties (fill, stroke, shadowColor)

    โž• Added

  • 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