2015-02-17 14:01:01 +08:00
# Change Log
2018-01-04 11:59:14 +08:00
2015-02-17 14:01:01 +08:00
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning ](http://semver.org/ ).
2015-02-08 07:24:11 +08:00
2018-03-15 14:38:49 +08:00
## [new version][unreleased]
2018-03-16 12:14:36 +08:00
### Added
* Typescript defs for `Konva.Transformer`
2018-03-19 11:17:46 +08:00
* Typescript defs for `globalCompositeOperation`
2018-03-16 12:14:36 +08:00
2018-03-16 11:53:50 +08:00
## Changes
* Fixed flow for `contextmenu` event. Not it will be triggered on shapes too
2018-03-16 09:56:08 +08:00
## [2.0.2][2018-03-15]
## Fixed
* Even more bugs fixes for `Konva.Transformer`
2018-03-15 15:11:01 +08:00
## [2.0.1][2018-03-15]
## Fixed
* Several bugs fixes for `Konva.Transformer`
2018-03-15 14:38:49 +08:00
2018-03-15 13:18:46 +08:00
## [2.0.0][2018-03-15]
2018-01-04 11:59:14 +08:00
### Added
2018-03-15 13:18:46 +08:00
* new `Konva.Transformer` . It is a special group that allow simple resizing and rotation of a shape.
2018-02-01 11:31:35 +08:00
* Add ability to remove event by callback `node.off('event', callback)` .
* new `Konva.Filters.Contrast` .
2018-03-10 10:56:27 +08:00
* new `Konva.Util.haveIntersection()` to detect simple collusion
2018-02-26 18:03:23 +08:00
* add `Konva.Text.ellipsis` to add '…' to text string if width is fixed and wrap is set to 'none'
2018-03-10 10:49:43 +08:00
* add gradients for strokes
2018-01-04 11:59:14 +08:00
## Changed
2018-03-15 13:18:46 +08:00
* stage events are slightly changed. `mousedown` , `click` , `mouseup` , `dblclick` , `touchstart` , `touchend` , `tap` , `dbltap` will be triggered when clicked on empty areas too
2016-07-05 10:59:41 +08:00
2017-12-19 15:31:36 +08:00
## Fixed
2018-01-04 11:59:14 +08:00
* Some typescript fixes
2018-02-27 09:01:15 +08:00
* Pixelate filter fixes
2018-03-10 15:41:41 +08:00
* Fixes for path data parsing
2018-03-14 11:07:55 +08:00
* Fixed shadow size calculation
2017-12-19 15:31:36 +08:00
2018-03-10 10:56:27 +08:00
## Removed
* Some deprecated methods are removed. If previous version was working without deprecation warnings for you, this one will work fine too.
2017-11-01 11:29:03 +08:00
## [1.7.6][2017-11-01]
2017-11-01 11:17:14 +08:00
## Fixed
2018-01-04 11:59:14 +08:00
* Some typescript fixes
2017-11-01 11:17:14 +08:00
2017-10-30 14:08:24 +08:00
## [1.7.4][2017-10-30]
2017-10-19 17:33:08 +08:00
2017-10-30 14:07:21 +08:00
## Fixed
2018-01-04 11:59:14 +08:00
* `isBrowser` detection for electron
2017-10-30 14:07:21 +08:00
## [1.7.3][2017-10-19]
2017-10-17 11:10:18 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* Changing size of a stage will redraw it in synchronous way
2017-10-17 11:10:18 +08:00
2017-10-19 17:33:08 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Some fixes special for nodejs
2017-10-19 17:33:08 +08:00
2017-10-11 17:38:16 +08:00
## [1.7.2][2017-10-11]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed `Konva.document is undefined`
2017-10-11 17:38:16 +08:00
2017-10-11 16:17:54 +08:00
## [1.7.1][2017-10-11]
### Changed
2018-01-04 11:59:14 +08:00
* Konva for browser env and Konva for nodejs env are separate packages now. You can use `konva-node` for NodeJS env.
2017-10-11 16:17:54 +08:00
2017-10-08 18:04:39 +08:00
## [1.7.0][2017-10-08]
2017-10-08 18:21:41 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Several typescript fixes
2017-10-08 18:21:41 +08:00
2017-08-25 19:25:55 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* Default value for `dragDistance` is changed to 3px.
* Fix rare error throw on drag
* Caching with height = 0 or width = 0 with throw async error. Caching will be ignored.
2017-08-25 19:25:55 +08:00
2017-08-19 15:01:38 +08:00
## [1.6.8][2017-08-19]
2017-08-02 04:16:44 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* The `node.getClientRect()` calculation is changed a bit. It is more powerfull and correct. Also it takes parent transform into account. See docs.
* Upgrade nodejs deps
2017-08-02 04:16:44 +08:00
2017-07-29 01:01:42 +08:00
## [1.6.7][2017-07-28]
2017-07-29 00:59:54 +08:00
2017-07-27 16:35:59 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Fix bug with double trigger wheel in Firefox
* Fix `node.getClientRect()` calculation in a case of Group + invisible child
* Fix dblclick issue https://github.com/konvajs/konva/issues/252
2017-07-27 16:35:59 +08:00
2017-05-25 02:53:22 +08:00
## [1.6.3][2017-05-24]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed bug with pointer detection. css 3d transformed stage will not work now.
2017-05-25 02:53:22 +08:00
2017-05-08 20:20:40 +08:00
## [1.6.2][2017-05-08]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed bug with automatic shadow for negative scale values
2017-05-08 20:20:40 +08:00
2017-04-26 02:02:32 +08:00
## [1.6.1][2017-04-25]
2017-04-26 01:46:06 +08:00
2017-04-26 02:02:32 +08:00
### Fixed
2017-04-26 01:46:06 +08:00
2018-01-04 11:59:14 +08:00
* Fix pointer position detection
2017-04-26 01:46:06 +08:00
2017-04-22 01:07:36 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* moved `globalCompositeOperation` property to `Konva.Node`
2017-04-22 00:10:23 +08:00
2017-04-22 00:11:43 +08:00
## [1.6.0][2017-04-21]
2017-04-22 00:10:23 +08:00
### Added
2018-01-04 11:59:14 +08:00
* support of globalCompositeOperation for `Konva.Shape`
2017-04-22 00:10:23 +08:00
2017-04-21 23:40:41 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* getAllIntersections now works ok for Text shapes (https://github.com/konvajs/konva/issues/224)
2017-04-21 23:40:41 +08:00
2017-03-24 22:09:38 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* Konva a bit changed a way to detect pointer position. Now it should be OK to apply css transform on Konva container. https://github.com/konvajs/konva/pull/215
2017-03-24 22:09:38 +08:00
2017-03-20 19:54:27 +08:00
## [1.5.0][2017-03-20]
2017-03-20 19:53:11 +08:00
### Added
2018-01-04 11:59:14 +08:00
* support for `lineDashOffset` property for `Konva.Shape` .
2017-03-20 19:53:11 +08:00
2017-02-08 00:42:24 +08:00
## [1.4.0][2017-02-07]
2017-02-08 00:37:01 +08:00
## Added
2018-01-04 11:59:14 +08:00
* `textDecoration` of `Konva.Text` now supports `line-through`
2017-02-08 00:37:01 +08:00
2017-01-10 21:29:09 +08:00
## [1.3.0][2017-01-10]
2016-09-21 04:31:30 +08:00
## Added
2018-01-04 11:59:14 +08:00
* new align value for `Konva.Text` and `Konva.TextPath` : `justify`
* new property for `Konva.Text` and `Konva.TextPath` : `textDecoration` . Right now it sports only '' (no decoration) and 'underline' values.
* new property for `Konva.Text` : `letterSpacing`
* new event `contentContextmenu` for `Konva.Stage`
* `align` support for `Konva.TextPath`
* new method `toCanvas()` for converting a node into canvas element
2016-09-21 04:31:30 +08:00
2016-09-22 03:22:08 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* changing a size of `Konva.Stage` will update it in async way (via `batchDraw` ).
* `shadowOffset` respect pixel ratio now
2016-09-21 04:31:30 +08:00
2016-10-25 23:42:32 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed bug when `Konva.Tag` width was not changing its width dynamically
* Fixed "calling remove() for dragging shape will throw an error"
* Fixed wrong opacity level for cached group with opacity
* More consistent shadows on HDPI screens
* Fixed memory leak for nodes with several names
2016-10-25 23:42:32 +08:00
2016-09-20 21:35:30 +08:00
## [1.2.2][2016-09-15]
2016-09-16 22:10:45 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* refresh stage hit and its `dragend`
* `getClientRect` calculations
2016-09-16 22:10:45 +08:00
2016-09-16 05:16:29 +08:00
## [1.2.0][2016-09-15]
## Added
2018-01-04 11:59:14 +08:00
* new properties for `Konva.TextPath` : `letterSpacing` and `textBaseline` .
2016-09-16 05:16:29 +08:00
2016-09-14 02:26:16 +08:00
## [1.1.4][2016-09-13]
### Fixed
2018-01-04 11:59:14 +08:00
* Prevent throwing an error when text property of `Konva.Text` = undefined or null
2016-09-14 02:26:16 +08:00
2016-09-12 19:29:29 +08:00
## [1.1.3][2016-09-12]
2016-09-12 19:28:42 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* Better hit function for `TextPath` .
* Validation of `Shape` filters.
2016-09-12 19:28:42 +08:00
2016-09-10 19:57:50 +08:00
## [1.1.2][2016-09-10]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed "Dragging Group on mobile view throws "missing preventDefault" error" #169
2016-09-10 19:57:50 +08:00
2016-08-30 14:09:19 +08:00
## [1.1.1][2016-08-30]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed #166 bug of drag& drop
2016-08-30 14:09:19 +08:00
2016-08-21 13:59:25 +08:00
## [1.1.0][2016-08-21]
## Added
2018-01-04 11:59:14 +08:00
* new property of `Konva.Shape` - `preventDefault` .
2016-08-21 13:59:25 +08:00
2016-08-14 14:00:00 +08:00
## [1.0.3][2016-08-14]
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed some typescript definitions
2016-08-14 14:00:00 +08:00
2016-07-08 11:44:15 +08:00
## [1.0.2][2016-07-08]
## Changed
2018-01-04 11:59:14 +08:00
* `Konva.Text` will interpret undefined `width` and `height` as `AUTO`
2016-07-08 11:44:15 +08:00
2016-07-05 10:59:41 +08:00
## [1.0.1][2016-07-05]
### Changed
2018-01-04 11:59:14 +08:00
* you can now unset property by `node.x(undefined)` or `node.setAttr('x', null)`
2016-07-05 10:59:41 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Bug fix for case when `touchend` event throws error
2016-07-05 10:59:41 +08:00
2016-07-05 10:22:44 +08:00
## [1.0.0][2016-07-05]
2015-10-31 00:22:05 +08:00
2016-07-05 10:04:18 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Bug fix for case when `touchend` event throws error
2016-07-05 10:04:18 +08:00
2016-06-18 23:31:50 +08:00
## [0.15.0][2016-06-18]
2016-06-18 23:27:19 +08:00
## Added
2018-01-04 11:59:14 +08:00
* Custom clip function
2016-06-18 23:27:19 +08:00
2016-06-17 15:09:37 +08:00
## [0.14.0][2016-06-17]
2016-06-07 18:25:32 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* fixes in typescript definitions
* fixes for bug with `mouseenter` event on deep nesting case
2016-06-07 18:25:32 +08:00
2016-05-14 23:17:33 +08:00
## [0.13.9][2016-05-14]
2016-05-06 15:31:35 +08:00
### Changed
2016-05-14 23:06:44 +08:00
2018-01-04 11:59:14 +08:00
* typescript definition in npm package
* node@5.10.1, canvas@1.3.14, jsdom@8.5.0 support
* `Konva.Path` will be filled when it is not closed
* `Animation.start()` will not not immediate sync draw. This should improve performance a little.
* Warning when node for `Tween` is not in layer yet.
* `removeChildren()` remove only first level children. So it will not remove grandchildren.
2016-05-06 15:31:35 +08:00
2016-04-19 17:16:58 +08:00
## [0.12.4][2016-04-19]
### Changed
2018-01-04 11:59:14 +08:00
* `batchDraw` will do not immediate `draw()`
2016-04-19 17:16:58 +08:00
2016-04-15 11:52:45 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* fix incorrect shadow offset on rotation
2016-04-15 11:52:45 +08:00
2016-04-07 12:03:51 +08:00
## [0.12.3][2016-04-07]
2016-03-31 10:57:17 +08:00
2016-04-07 12:03:51 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* `batchDraw` function works less time now
* lighter npm package
2016-03-31 10:57:17 +08:00
2016-04-07 12:03:51 +08:00
## [0.12.2][2016-03-31]
### Fixed
2018-01-04 11:59:14 +08:00
* repair `cancelBubble` event property behaviour
* fix wrong `Path` `getClientRect()` calculation
* better HDPI support
* better typescript definitions
* node 0.12 support
2016-01-16 17:35:03 +08:00
2016-02-29 08:03:03 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* more universal stage container selector
* `mousewheel` event changed to `wheel`
2016-02-29 08:03:03 +08:00
2016-01-16 17:46:53 +08:00
## [0.11.1][2016-01-16]
2016-01-16 17:35:03 +08:00
2015-10-31 00:22:05 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* 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
2015-10-31 00:22:05 +08:00
2015-11-22 11:44:33 +08:00
### Added
2018-01-04 11:59:14 +08:00
* 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.
2015-11-22 11:44:33 +08:00
2015-12-22 18:32:22 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* `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
2015-12-22 18:32:22 +08:00
2015-10-27 11:51:16 +08:00
## [0.10.0][2015-10-27]
2015-03-10 20:16:13 +08:00
2015-08-28 11:29:52 +08:00
### Added
2018-01-04 11:59:14 +08:00
* RGBA filter. Thanks to [@codefo ](https://github.com/codefo )
* `stroke` and `fill` support for `Konva.Sprite`
2015-08-28 11:29:52 +08:00
2015-06-19 08:46:58 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* 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
2015-06-19 08:46:58 +08:00
2015-06-02 09:14:54 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* 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
2015-06-02 09:14:54 +08:00
2015-05-28 14:17:34 +08:00
## [0.9.5][2015-05-28]
2015-03-10 20:16:13 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* `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
2015-03-10 20:16:13 +08:00
2015-04-08 23:26:25 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* context wrapper is more capable with native context.
2015-04-14 10:56:56 +08:00
So you can use `context.fillStyle` property in your `sceneFunc` without accessing native context.
2018-01-04 11:59:14 +08:00
* `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.
2015-05-04 17:56:54 +08:00
### Added
2018-01-04 11:59:14 +08:00
* new `Konva.Image.fromURL` method
2015-03-10 20:16:13 +08:00
2015-05-07 09:48:15 +08:00
### Deprecated
2018-01-04 11:59:14 +08:00
* `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.
2015-05-07 09:48:15 +08:00
2015-02-27 12:05:11 +08:00
## [0.9.0][2015-02-27]
2015-02-17 14:01:01 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* cache algorithm has A LOT OF updates.
2015-02-08 07:24:11 +08:00
2015-02-17 14:01:01 +08:00
### Changed
2018-01-04 11:59:14 +08:00
* `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` )
2015-02-17 14:01:01 +08:00
### Added
2018-01-04 11:59:14 +08:00
* new methods for working with node's name: `addName` , `removeName` , `hasName` .
* new `perfectDrawEnabled` property for shape. See [http://konvajs.github.io/docs/performance/Disable_Perfect_Draw.html ](http://konvajs.github.io/docs/performance/Disable_Perfect_Draw.html )
* new `shadowForStrokeEnabled` property for shape. See [http://konvajs.github.io/docs/performance/All_Performance_Tips.html ](http://konvajs.github.io/docs/performance/All_Performance_Tips.html )
* new `getClientRect` method.
* new `to` method for every node for shorter tweening
2015-05-04 17:56:54 +08:00
2016-03-31 10:59:13 +08:00
## [0.8.0][2015-02-04]
2015-01-29 01:21:02 +08:00
* Bug Fixes
2018-01-04 11:59:14 +08:00
* browser crashing on pointer events fixed
* optimized `getIntersection` function
2015-01-29 01:21:02 +08:00
* Enhancements
2018-01-04 11:59:14 +08:00
* `container.findOne()` method
* new `strokeHitEnabled` property. Useful for performance optimizations
* typescript definitions. see `/resources/konva.d.ts`
2015-01-29 01:21:02 +08:00
2015-02-17 14:01:01 +08:00
## Rebranding release 2015-01-28
2018-01-04 11:59:14 +08:00
2015-10-13 20:07:48 +08:00
Differences from last official `KineticJS` release
2015-01-22 16:46:53 +08:00
* Bug Fixes
2018-01-04 11:59:14 +08:00
* `strokeScaleEnabled = false` is disabled for text as I can not find a way to implement this
* `strokeScaleEnabled = false` for Line now creates a correct hit graph
* working "this-example" as name for nodes
* Konva.Text() with no config will not throw exception
* Konva.Line() with no config will not throw exception
* Correct stage resizing with `FastLayer`
* `batchDraw` method for `FastLayer`
* Correct mouseover/mouseout/mouseenter/mouseleave events for groups
* cache node before adding to layer
* `intersects` function now works for shapes with shadow
2015-05-04 17:56:54 +08:00
2015-01-20 18:06:21 +08:00
* Enhancements
2018-01-04 11:59:14 +08:00
* `cornerRadius` of Rect is limited by `width/2` and `height/2`
* `black` is default fill for text
* true class extending. Now `rect instanceOf Konva.Shape` will return true
* while dragging you can redraw layer that is not under drag. hit graph will be updated in this case
* now you can move object that is dragging into another layer.
* new `frameOffsets` attribute for `Konva.Sprite`
* much better dragging performance
* `browserify` support
* applying opacity to cached node
* remove all events with `node.off()`
* mouse dragging only with left button
* opacity now affects cached shapes
* Label corner radius
* smart changing `width` , `height` , `radius` attrs for circle, start, ellipse, ring.
* `mousewheel` support. Thanks [@vmichnowicz ](https://github.com/vmichnowicz )
* new Arrow plugin
* multiple names: `node.name('foo bar'); container.find('.foo');` (thanks [@mattslocum ](https://github.com/mattslocum ))
* `Container.findOne()`