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
2020-11-18 00:22:28 +08:00
## 7.1.8
* Fix incorrect rendering of `TextPath` in some cases. (again)
2020-11-17 00:13:08 +08:00
## 7.1.7
2020-11-11 01:50:29 +08:00
2020-11-17 00:12:23 +08:00
* Fix incorrect rendering of `TextPath` in some cases.
## 7.1.6
2020-11-11 01:50:29 +08:00
* Fix for correct image/dataURL/canvas exports for `Konva.Stage` .
2020-11-10 22:01:00 +08:00
## 7.1.5
* Performance fixes for dragging many nodes with `Konva.Transformer` .
* Documentation updates
2020-10-22 05:42:22 +08:00
## 7.1.4
* Perf fixes
2020-10-12 21:49:18 +08:00
* Change events trigger flow, so adding new events INSIDE event callback will work correctly.
2020-10-12 22:11:11 +08:00
* Fix double `dragend` , `dragstart` , `dragmove` triggers on `Konva.Transformer`
2020-09-25 22:09:35 +08:00
2020-09-17 22:39:15 +08:00
## 7.1.3
* Text rendering fixes
2020-09-16 22:55:40 +08:00
## 7.1.2
* fix ellipses behavior for `Konva.Text` .
* fix scaled fill pattern for text.
2020-09-15 03:30:03 +08:00
## 7.1.1
2020-09-15 02:01:45 +08:00
* fixes for `dragstart` event when `Konva.Transformer` is used. `dragstart` event will have correct native `evt` reference
2020-09-14 22:46:26 +08:00
* Better unicode support in `Konva.Text` and `Konva.TextPath` . Emoji should work better now 👍
2020-09-08 00:05:26 +08:00
## 7.1.0
* Multi row support for `ellipsis` config for `Konva.Text`
2020-09-08 00:03:20 +08:00
* Better `Konva.Transfomer` behavior when single attached node is programmatically rotated.
2020-09-03 02:27:09 +08:00
## 7.0.7
2020-08-26 22:54:03 +08:00
2020-09-03 01:50:41 +08:00
* fixes for `dragstart` event when `Konva.Transformer` is used. `dragstart` will not bubble from transformer.
2020-08-26 22:54:03 +08:00
* `string` and `fill` properties validation can accept `CanvasGradient` as valid value
2020-08-22 01:09:58 +08:00
## 7.0.6
* Better performance for stage dragging
2020-08-08 22:45:01 +08:00
## 7.0.5
* Fixes for `node.cache()` function.
## 7.0.4
2020-07-27 23:20:56 +08:00
* Add `onUpdate` callbacks to `Konva.Tween` configuration and `node.to()` method.
2020-07-30 23:44:15 +08:00
* Up to 6x faster initializations of objects, like `const shape = new Konva.Shape()` .
2020-07-27 23:20:56 +08:00
2020-07-10 05:50:50 +08:00
## 7.0.3 - 2020-07-09
* Fix wring `dragend` trigger on `draggable` property change inside `click`
2020-07-06 23:20:47 +08:00
* Fix incorrect text rendering with `letterSpacing !== 0`
* Typescript fixes
2020-07-01 02:04:06 +08:00
## 7.0.2 - 2020-06-30
* Fix wrong trigger `dbltap` and `click` on mobile
2020-06-30 01:14:39 +08:00
## 7.0.1 - 2020-06-29
2020-06-26 01:20:01 +08:00
* Fixes for different font families support.
2020-06-30 01:14:39 +08:00
* Fixes for `Konva.Transformer` positions
* Types fixes for better Typescript support
2020-06-26 01:20:01 +08:00
2020-06-24 07:07:53 +08:00
## 7.0.0 - 2020-06-23
2020-06-19 05:41:54 +08:00
* **BREAKING** `inherit` option is removed from `visible` and `listening` . They now just have boolean values `true` or `false` . If you do `group.listening(false);` then whole group and all its children will be removed from the hitGraph (and they will not listen to events). Probably 99% `Konva` applications will be not affected by this *breaking change* .
2020-06-24 09:41:24 +08:00
* **Many performance fixes and code size optimizations. Up to 70% performance boost for many moving nodes.**
2020-06-04 02:57:57 +08:00
* `layer.hitGraphEnabled()` is deprecated. Just use `layer.listening(false)` instead
* Better support for font families with spaces inside (like `Font Awesome 5` ).
2020-06-19 05:41:54 +08:00
* Fix wrong `dblclick` and `dbltap` triggers
2020-06-11 00:57:48 +08:00
* Deprecate `Konva.FastLayer` . Use `new Konva.Layer({ listening: false });` instead.
2020-06-19 05:41:54 +08:00
* `dragmove` event will be fired on `Konva.Transformer` too when you drag a node.
* `dragmove` triggers only after ALL positions of dragging nodes are changed
2020-05-15 00:13:47 +08:00
2020-05-08 23:07:05 +08:00
## 6.0.0 - 2020-05-08
2020-05-08 22:59:35 +08:00
2020-05-08 23:07:05 +08:00
* **BREAKING!** `boundBoxFunc` of `Konva.Transformer` works in absolute coordinates of whole transformer. Previously in was working in local coordinates of transforming node.
2020-05-07 00:40:08 +08:00
* Many `Konva.Transformer` fixes. Now it works correctly when you transform several rotated shapes.
2020-05-15 00:13:47 +08:00
* Fix for wrong `mouseleave` and `mouseout` fire on shape remove/destroy.
2020-05-07 00:40:08 +08:00
2020-05-02 05:07:38 +08:00
## 5.0.3 - 2020-05-01
* Fixes for `boundBoxFunc` of `Konva.Transformer` .
2020-04-24 00:34:11 +08:00
## 5.0.2 - 2020-04-23
2020-04-23 21:59:19 +08:00
* Deatach fixes for `Konva.Transformer`
2020-04-23 08:20:44 +08:00
## 5.0.1 - 2020-04-22
2020-04-22 22:06:31 +08:00
* Fixes for `Konva.Transformer` when parent scale is changed
2020-04-23 08:20:44 +08:00
* Fixes for `Konva.Transformer` when parent is draggable
* Performance optimizations
2020-04-22 22:06:31 +08:00
2020-04-23 08:20:44 +08:00
## 5.0.0 - 2020-04-21
2020-04-22 05:23:55 +08:00
2020-05-07 00:40:08 +08:00
* **New `Konva.Transformer` implementation!**. Old API should work. But I marked this release is `major` (breaking) just for smooth updates. Changes:
2020-04-22 05:23:55 +08:00
* Support of transforming multiple nodes at once: `tr.nodes([shape1, shape2])` .
2020-04-22 05:10:11 +08:00
* `tr.node()` , `tr.setNode()` , `tr.attachTo()` methods are deprecated. Use `tr.nodes(array)` instead
* Fixes for center scaling
2020-04-22 05:23:55 +08:00
* Fixes for better `padding` support
* `Transformer` can be placed anywhere in the tree of a stage tree (NOT just inside a parent of attached node).
* Fix `imageSmoothEnabled` resets when stage is resized
2020-04-09 05:02:03 +08:00
* Memory usage optimizations when a node is cached
2020-03-27 04:14:30 +08:00
## 4.2.2 - 2020-03-26
* Fix hit stroke issues
2020-03-27 03:42:26 +08:00
## 4.2.1 - 2020-03-26
2020-03-18 22:41:36 +08:00
* Fix some issues with `mouseenter` and `mouseleave` events.
2020-03-27 03:41:06 +08:00
* Deprecate `hitStrokeEnabled` property
* Fix rounding issues for `getClientRect()` for some shapes
2020-03-18 22:41:36 +08:00
2020-03-15 10:37:43 +08:00
## 4.2.0 - 2020-03-14
2020-03-03 21:50:55 +08:00
* Add `rotationSnapTolerance` property to `Konva.Transformer` .
2020-03-03 22:09:21 +08:00
* Add `getActiveAnchor()` method to `Konva.Transformer`
2020-03-12 22:27:42 +08:00
* Fix hit for non-closed `Konva.Path`
2020-03-15 10:07:37 +08:00
* Some fixes for experimental Offscreen canvas support inside a worker
2020-03-03 21:50:55 +08:00
2020-02-26 08:22:46 +08:00
## 4.1.6 - 2020-02-25
2020-02-25 09:39:32 +08:00
* Events fixes for `Konva.Transformer`
2020-02-18 08:52:12 +08:00
* Now `Konva` will keep `id` in a cloned node
2020-02-26 08:22:46 +08:00
* Better error messages on tainted canvas issues
2020-02-18 08:52:12 +08:00
2020-02-16 20:39:42 +08:00
## 4.1.5 - 2020-02-16
* Fixes for `path.getClientRect()` function calculations
2020-02-10 21:23:22 +08:00
## 4.1.4 - 2020-02-10
2020-02-10 21:22:07 +08:00
* Fix wrong internal caching of absolute attributes
2020-02-06 23:14:49 +08:00
* Fix `Konva.Transformer` behavior on scaled with CSS stage
2020-01-31 00:43:22 +08:00
## 4.1.3 - 2020-01-30
2020-01-28 02:41:18 +08:00
* Fix line with tension calculations
2020-01-31 00:41:05 +08:00
* Add `node.getAbsoluteRotation()` method
2020-01-31 00:43:22 +08:00
* Fix cursor on anchors for rotated parent
2020-01-28 02:41:18 +08:00
2020-01-08 21:15:12 +08:00
## 4.1.2 - 2020-01-08
* Fix possible `NaN` in content calculations
2020-01-07 21:31:28 +08:00
## 4.1.1 - 2020-01-07
2019-12-25 00:20:44 +08:00
* Add ability to use `width = 0` and `height = 0` for `Konva.Image` .
2020-01-03 21:59:34 +08:00
* Fix `cache()` method of `Konva.Arrow()`
2020-01-07 21:31:28 +08:00
* Add `Transform` to `Konva` default exports. So `Konva.Transform` is available now.
2019-12-25 00:20:44 +08:00
2019-12-23 23:54:33 +08:00
## 4.1.0 - 2019-12-23
2019-11-29 01:22:44 +08:00
* Make events work on some CSS transforms
2019-11-29 00:51:40 +08:00
* Fix caching on float dimensions
2019-12-19 03:35:29 +08:00
* Fix `mouseleave` event on stage.
2019-12-23 23:52:49 +08:00
* Increase default anchor size for `Konva.Transformer` on touch devices
2019-11-29 00:51:40 +08:00
## 4.0.18 - 2019-11-20
2019-11-15 00:18:12 +08:00
* Fix `path.getClientRect()` calculations for `Konva.Path`
* Fix wrong fire of `click` and `tap` events on stopped drag events.
2019-11-09 00:48:50 +08:00
## 4.0.17 - 2019-11-08
2019-11-09 00:45:17 +08:00
* Allow hitStrokeWidth usage, even if a shape has not stroke visible
* Better IE11 support
2019-10-21 23:13:11 +08:00
## 4.0.16 - 2019-10-21
2019-10-19 03:09:29 +08:00
* Warn on undefined return value of `dragBoundFunc` .
2019-10-21 23:12:10 +08:00
* Better calculations for `container.getClientRect()`
2019-10-19 03:09:29 +08:00
2019-10-16 00:51:13 +08:00
## 4.0.15 - 2019-10-15
2019-10-11 22:14:53 +08:00
* TS fixes
2019-10-16 00:51:13 +08:00
* Better calculations for `TextPath` with align = right
* Better `textPath.getClientRect()`
2019-10-11 22:14:53 +08:00
2019-10-11 20:55:04 +08:00
## 4.0.14 - 2019-10-11
* TS fixes
2019-10-11 04:52:00 +08:00
* Fix globalCompositeOperation + cached hit detections.
2019-10-09 04:19:27 +08:00
* Fix absolute position calculations for cached parent
2019-10-02 21:00:06 +08:00
## 4.0.13 - 2019-10-02
* Fix `line.getClientRect()` calculations for line with a tension or low number of points
2019-09-18 01:54:42 +08:00
## 4.0.12 - 2019-09-17
2019-09-18 01:50:28 +08:00
* Fix some bugs when `Konva.Transformer` has `padding > 0`
2019-09-11 01:09:37 +08:00
## 4.0.10 - 2019-09-10
2019-09-11 01:08:36 +08:00
* Fix drag position handling
2019-09-09 23:54:23 +08:00
* Fix multiple selector for find() method
2019-09-07 03:16:11 +08:00
## 4.0.9 - 2019-09-06
2019-09-07 03:15:07 +08:00
* Fix `Konva.Transformer` behavior on mirrored nodes
2019-09-07 02:39:26 +08:00
* Fix `stage.getPointerPosition()` logic.
2019-09-06 02:03:06 +08:00
## 4.0.8 - 2019-09-05
* Fix `dragend` event on click
* Revert fillPatternScale for text fix.
2019-09-03 22:38:19 +08:00
## 4.0.7 - 2019-09-03
* Fixed evt object on `dragstart`
2019-09-03 00:39:22 +08:00
* Fixed double tap trigger after dragging
2019-09-01 05:40:39 +08:00
## 4.0.6 - 2019-08-31
* Fix fillPatternScale for text
2019-08-17 13:47:48 +08:00
## 4.0.5 - 2019-08-17
* Fix `dragstart` flow when `node.startDrag()` is called.
* Fix `tap` and `dbltap` double trigger on stage
## 4.0.4 - 2019-08-12
2019-08-12 09:44:29 +08:00
2019-08-10 17:41:54 +08:00
* Add `node.isCached()` method
2019-08-12 09:42:50 +08:00
* Fix nested dragging bug
2019-08-10 17:41:54 +08:00
2019-08-17 13:47:48 +08:00
## 4.0.3 - 2019-08-08
2019-08-08 17:24:55 +08:00
* Slightly changed `mousemove` event flow. It triggers for first `mouseover` event too
* Better `Konva.hitOnDragEnabled` support for mouse inputs
2019-08-17 13:47:48 +08:00
## 4.0.2 - 2019-08-08
2019-08-08 12:13:55 +08:00
* Fixed `node.startDrag()` behavior. We can call it at any time.
2019-08-17 13:47:48 +08:00
## 4.0.1 - 2019-08-07
2019-08-07 19:47:48 +08:00
* Better `Konva.Arrow` + tension drawing
* Typescript fixes
2019-08-17 13:47:48 +08:00
## 4.0.0 - 2019-08-05
2019-08-05 14:54:08 +08:00
Basically the release doesn't have any breaking changes. You may only have issues if you are using something from `Konva.DD` object (which is private and never documented). Otherwise you should be fine. `Konva` has major upgrade about touch events system and drag& drop flow. The API is exactly the same. But the internal refactoring is huge so I decided to make a major version. Please upgrade carefully. Report about any issues you have.
* Better multi-touch support. Now we can trigger several `touch` events on one or many nodes.
* New drag& drop implementation. You can drag several shapes at once with several pointers.
* HSL colors support
2019-08-04 15:38:57 +08:00
2019-08-17 13:47:48 +08:00
## 3.4.1 - 2019-07-18
2019-07-18 08:55:22 +08:00
* Fix wrong double tap trigger
2019-07-12 18:12:11 +08:00
2019-08-17 13:47:48 +08:00
## 3.4.0 - 2019-07-12
2019-07-12 18:12:11 +08:00
2019-06-19 04:29:07 +08:00
* TS types fixes
2019-07-12 18:12:11 +08:00
* Added support for different values for `cornerRadius` of `Konva.Rect`
2019-06-19 04:29:07 +08:00
2019-08-17 13:47:48 +08:00
## 3.3.3 - 2019-06-07
2019-06-08 04:24:52 +08:00
* Some fixes for better support `konva-node`
* TS types fixes
2019-08-17 13:47:48 +08:00
## 3.3.2 - 2019-06-03
2019-06-03 22:44:30 +08:00
* TS types fixes
2019-08-17 13:47:48 +08:00
## 3.3.1 - 2019-05-28
2019-05-31 02:06:13 +08:00
2019-05-31 01:56:24 +08:00
* Add new property `imageSmoothingEnabled` to the node caching
2019-05-31 02:06:13 +08:00
* Even more ts fixes. Typescript need a lot of attention, you know...
2019-05-31 01:56:24 +08:00
2019-08-17 13:47:48 +08:00
## 3.3.0 - 2019-05-28
2019-05-29 04:39:08 +08:00
* Enable strict mode for ts types
* Add new property `imageSmoothingEnabled` to the layer
2019-08-17 13:47:48 +08:00
## 3.2.7 - 2019-05-27
2019-05-28 09:27:01 +08:00
2019-05-28 01:54:11 +08:00
* Typescript fixes
2019-05-28 05:16:41 +08:00
* Experimental pointer events support. Do `Konva._pointerEventsEnabled = true;` to enable
* Fix some `Konva.Transformer` bugs.
2019-05-28 01:54:11 +08:00
2019-08-17 13:47:48 +08:00
## 3.2.6 - 2019-05-09
2019-05-09 21:28:09 +08:00
* Typescript fixes again
2019-08-17 13:47:48 +08:00
## 3.2.5 - 2019-04-17
2019-04-18 00:02:42 +08:00
2019-04-09 01:17:26 +08:00
* Show a warning when `Konva.Transformer` and attaching node have different parents.
2019-04-18 00:02:42 +08:00
* Typescript fixes
2019-04-09 01:17:26 +08:00
2019-08-17 13:47:48 +08:00
## 3.2.4 - 2019-04-05
2019-04-05 21:15:42 +08:00
2019-04-04 09:28:48 +08:00
* Fix some stage events. `mouseenter` and `mouseleave` should work correctly on empty spaces
* Fix some typescript types
2019-04-05 21:14:05 +08:00
* Better detection of production mode (no extra warnings)
2019-04-04 09:28:48 +08:00
2019-08-17 13:47:48 +08:00
## 3.2.3 - 2019-03-21
2019-03-21 20:43:58 +08:00
* Fix `hasName` method for empty name cases
2019-08-17 13:47:48 +08:00
## 3.2.2 - 2019-03-19
2019-03-20 07:19:40 +08:00
* Remove `dependencies` from npm package
2019-08-17 13:47:48 +08:00
## 3.2.1 - 2019-03-18
2019-03-19 03:18:03 +08:00
* Better `find` and `findOne` lookup. Now we should not care about duplicate ids.
* Better typescript definitions
2019-08-17 13:47:48 +08:00
## 3.2.0 - 2019-03-10
2019-03-10 23:51:14 +08:00
2019-03-11 01:40:49 +08:00
* new property `shape.hitStrokeWidth(10)`
2019-03-10 23:51:14 +08:00
* Better typescript definitions
* Remove `Object.assign` usage (for IE11 support)
2019-08-17 13:47:48 +08:00
## 3.1.7 - 2019-03-06
2019-03-07 11:51:34 +08:00
* Better modules and TS types
2019-08-17 13:47:48 +08:00
## 3.1.6 - 2019-02-27
2019-02-28 06:32:18 +08:00
* Fix commonjs exports
2019-02-28 00:19:24 +08:00
* Fix global injections
2019-08-17 13:47:48 +08:00
## 3.1.0 - 2019-02-27
2019-02-27 21:11:17 +08:00
* Make `Konva` modular: `import Konva from 'konva/lib/Core';` ;
2019-02-27 22:14:07 +08:00
* Fix incorrect `Transformer` behavior
* Fix drag& drop for touch devices
2019-02-27 21:11:17 +08:00
2019-08-17 13:47:48 +08:00
## 3.0.0 - 2019-02-25
2018-03-15 14:38:49 +08:00
2019-02-23 10:39:58 +08:00
## Breaking
2019-02-25 21:05:14 +08:00
Customs builds are temporary removed from npm package. You can not use `import Konva from 'konva/src/Core';` .
2019-02-24 09:54:20 +08:00
This feature will be added back later.
2019-02-23 10:39:58 +08:00
2019-02-19 21:36:16 +08:00
### Possibly breaking
That changes are private and internal specific. They should not break most of `Konva` apps.
2019-02-24 09:54:20 +08:00
* `Konva.Util.addMethods` is removed
* `Konva.Util._removeLastLetter` is removed
* `Konva.Util._getImage` is removed
* `Konv.Util._getRGBAString` is removed
* `Konv.Util._merge` is removed
2019-02-19 21:36:16 +08:00
* Removed polyfill for `requestAnimationFrame` .
* `id` and `name` properties defaults are empty strings, not `undefined`
* internal `_cache` property was updated to use es2015 `Map` instead of `{}` .
2019-02-25 01:12:36 +08:00
* `Konva.Validators` is removed.
2019-02-23 10:39:58 +08:00
2019-01-22 21:43:43 +08:00
### Added
2019-01-25 13:20:15 +08:00
* Show a warning when a stage has too many layers
2019-01-25 11:52:16 +08:00
* Show a warning on duplicate ids
2019-01-25 13:20:15 +08:00
* Show a warning on weird class in `Node.create` parsing from JSON
2019-02-14 12:41:32 +08:00
* Show a warning for incorrect value for component setters.
* Show a warning for incorrect value for `zIndex` property.
* Show a warning when user is trying to reuse destroyed shape.
* new publish method `measureSize(string)` for `Konva.Text`
2019-02-14 23:33:58 +08:00
* You can configure what mouse buttons can be used for drag& drop. To enable right button you can use `Konva.dragButtons = [0, 1]` .
2019-02-20 09:17:49 +08:00
* Now you can hide stage `stage.visible(false)` . It will set its container display style to "none".
* New method `stage.setPointersPositions(event)` . Usually you don't need to use it manually.
2019-02-20 22:13:39 +08:00
* New method `layer.toggleHitCanvas()` to show and debug hit areas
2019-01-22 21:43:43 +08:00
2019-01-02 04:59:27 +08:00
### Changed
* Full rewrite to Typescript with tons of refactoring and small optimizations. The public API should be 100% the same
2019-01-11 21:51:46 +08:00
* Fixed `patternImage` and `radialGradient` for `Konva.Text`
2019-01-22 06:42:02 +08:00
* `Konva.Util._isObject` is renamed to `Konva.Util._isPlainObject` .
2019-02-06 05:43:43 +08:00
* A bit changed behavior of `removeId` (private method), now it doesn't clear node ref, if object is changed.
2019-01-25 13:20:15 +08:00
* simplified `batchDraw` method (it doesn't use `Konva.Animation` ) now.
2019-02-14 11:04:54 +08:00
* Performance improvements for shapes will image patterns, linear and radial fills
2019-02-23 10:39:58 +08:00
* `text.getTextHeight()` is deprecated. Use `text.height()` or `text.fontSize()` instead.
* Private method `stage._setPointerPosition()` is deprecated. Use `stage.setPointersPositions(event)` ;
2019-01-02 04:59:27 +08:00
2018-12-19 01:29:48 +08:00
### Fixed
* Better mouse support on mobile devices (yes, that is possible to connect mouse to mobile)
2019-02-06 05:43:43 +08:00
* Better implementation of `mouseover` event for stage
2019-02-07 01:48:05 +08:00
* Fixed underline drawing for text with `lineHeight !== 1`
2019-02-19 21:36:16 +08:00
* Fixed some caching behavior when a node has `globalCompositeOperation` .
* Fixed automatic updates for `Konva.Transformer`
2019-02-20 09:43:06 +08:00
* Fixed container change for a stage.
2019-02-20 22:13:39 +08:00
* Fixed warning for `width` and `height` attributes for `Konva.Text`
2019-02-21 00:01:38 +08:00
* Fixed gradient drawing for `Konva.Text`
2019-02-25 21:05:14 +08:00
* Fixed rendering with `strokeWidth = 0`
2018-12-19 01:29:48 +08:00
2019-08-17 13:47:48 +08:00
## 2.6.0 - 2018-12-14
2018-12-15 02:30:05 +08:00
2018-11-17 21:50:31 +08:00
### Changed
2018-12-15 02:28:39 +08:00
* Performance fixes when cached node has many children
2018-12-15 02:30:05 +08:00
* Better drawing for shape with `strokeScaleEnabled = false` on HDPI devices
2018-12-15 02:28:39 +08:00
### Added
* New `ignoreStroke` for `Konva.Transformer` . Good to use when a shape has `strokeScaleEnabled = false`
### Changed
2018-12-19 01:19:51 +08:00
* `getKerning` TextPath API is deprecated. Use `kerningFunc` instead.
2018-11-17 21:50:31 +08:00
2019-08-17 13:47:48 +08:00
## 2.5.1 - 2018-11-08
2018-11-08 22:15:47 +08:00
2018-11-08 22:09:45 +08:00
### Changed
* Use custom functions for `trimRight` and `trimLeft` (for better browsers support)
2019-08-17 13:47:48 +08:00
## 2.5.0 - 2018-10-24
2018-10-24 21:02:01 +08:00
2018-10-19 01:00:01 +08:00
### Added
* New `anchorCornerRadius` for `Konva.Transformer`
2018-10-16 05:40:33 +08:00
### Fixed
2018-11-08 22:09:45 +08:00
2018-10-16 05:40:33 +08:00
* Performance fixes for caching
2018-10-19 01:28:03 +08:00
### Changed
2018-10-24 21:02:01 +08:00
* `dragstart` event behavior is a bit changed. It will fire BEFORE actual position of a node is changed.
2018-10-19 01:28:03 +08:00
2019-08-17 13:47:48 +08:00
## 2.4.2 - 2018-10-12
2018-10-13 01:07:58 +08:00
2018-10-13 01:07:04 +08:00
### Fixed
* Fixed a wrong cache when a shape inside group has `listening = false`
2019-08-17 13:47:48 +08:00
## 2.4.1 - 2018-10-08
2018-10-08 18:16:38 +08:00
2018-09-24 14:32:54 +08:00
### Changed
2018-09-19 20:01:34 +08:00
2018-09-24 14:32:54 +08:00
* Added some text trim logic to wrap in better
2018-09-10 23:02:33 +08:00
2018-09-24 19:40:07 +08:00
### Fixed
2018-10-01 19:42:56 +08:00
* `getClientRect` for complex paths fixes
2018-09-24 19:40:07 +08:00
* `getClientRect` calculation fix for groups
2018-10-01 19:42:56 +08:00
* Update `Konva.Transformer` on `rotateEnabled` change
2018-09-27 15:59:27 +08:00
* Fix click stage event on dragend
* Fix some Transformer cursor behavior
2018-09-24 19:40:07 +08:00
2019-08-17 13:47:48 +08:00
## 2.4.0 - 2018-09-19
2018-09-10 23:02:33 +08:00
2018-09-11 21:15:42 +08:00
### Added
* Centered resize with ALT key for `Konva.Transformer`
2018-09-19 19:59:01 +08:00
* New `centeredScaling` for `Konva.Transformer`
2018-09-11 21:15:42 +08:00
2018-09-24 14:32:54 +08:00
### Fixed
* Tween support for gradient properties
* Add `user-select: none` to the stage container to fix some "selected contend around" issues
2019-08-17 13:47:48 +08:00
## 2.3.0 - 2018-08-30
2018-08-30 20:24:45 +08:00
2018-08-30 18:49:43 +08:00
### Added
* new methods `path.getLength()` and `path.getPointAtLength(val)`
2018-08-30 20:18:09 +08:00
* `verticalAlign` for `Konva.Text`
2018-08-30 18:49:43 +08:00
2019-08-17 13:47:48 +08:00
## 2.2.2 - 2018-08-21
2018-08-21 17:07:28 +08:00
2018-08-13 13:13:29 +08:00
### Changed
* Default duration for tweens and `node.to()` methods is now 300ms
2018-08-21 16:56:04 +08:00
* Typescript fixes
* Automatic validations for many attributes
2018-08-13 13:13:29 +08:00
2019-08-17 13:47:48 +08:00
## 2.2.1 - 2018-08-10
2018-08-10 13:39:30 +08:00
2018-08-10 11:22:08 +08:00
### Added
* New properties for `Konva.Transformer` : `borderStroke` , `borderStrokeWidth` , `borderDash` , `anchorStroke` , `anchorStrokeWidth` , `anchorSize` .
### Changed
* Some properties of `Konva.Transformer` are renamed. `lineEnabled` -> `borderEnabled` . `rotateHandlerOffset` -> `rotateAnchorOffset` , `enabledHandlers` -> `enabledAnchors` .
2019-08-17 13:47:48 +08:00
## 2.1.8 - 2018-08-01
2018-08-01 19:35:52 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-07-12 12:04:20 +08:00
* Some `Konva.Transformer` fixes
2018-07-18 15:56:46 +08:00
* Typescript fixes
* `stage.toDataURL()` fixes when it has hidden layers
2018-08-01 10:26:13 +08:00
* `shape.toDataURL()` automatically adjust position and size of resulted image
2018-07-12 12:04:20 +08:00
2019-08-17 13:47:48 +08:00
## 2.1.7 - 2018-07-03
2018-07-03 12:03:06 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-07-03 12:03:06 +08:00
2018-07-05 15:49:02 +08:00
* `toObject` fixes
2019-08-17 13:47:48 +08:00
## 2.1.7 - 2018-07-03
2018-07-05 15:49:02 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-07-05 15:49:02 +08:00
2018-07-03 12:03:06 +08:00
* Some drag& drop fixes
2019-08-17 13:47:48 +08:00
## 2.1.6 - 2018-06-16
2018-06-20 19:01:29 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-06-20 19:01:29 +08:00
* Removed wrong dep
* Typescript fixes
2019-08-17 13:47:48 +08:00
## 2.1.5 - 2018-06-15
2018-06-15 16:18:04 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-06-15 15:50:36 +08:00
* Typescript fixes
2018-06-15 16:17:14 +08:00
* add shape as second argument for `sceneFunc` and `hitFunc`
2018-06-15 15:50:36 +08:00
2019-08-17 13:47:48 +08:00
## 2.1.4 - 2018-06-15
2018-06-15 14:12:02 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-05-24 09:59:08 +08:00
* Fixed `Konva.Text` justify drawing for a text with decoration
2018-06-05 22:28:34 +08:00
* Added methods `data()` ,`setData()` and `getData()` methods to `Konva.TextPath`
2018-06-15 14:12:02 +08:00
* Correct cache reset for `Konva.Transformer`
2018-05-24 09:59:08 +08:00
2019-08-17 13:47:48 +08:00
## 2.1.3 - 2018-05-17
2018-05-17 12:11:12 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-05-17 12:08:29 +08:00
* `Konva.Transformer` automatically track shape changes
* `Konva.Transformer` works with shapes with offset too
2019-08-17 13:47:48 +08:00
## 2.1.2 - 2018-05-16
2018-05-16 10:42:32 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-04-24 12:08:02 +08:00
* Cursor fixes for `Konva.Transformer`
* Fixed lineHeight behavior for `Konva.Text`
* Some performance optimizations for `Konva.Text`
2018-04-30 10:40:49 +08:00
* Better wrap algorithm for `Konva.Text`
2018-05-04 14:56:08 +08:00
* fixed `Konva.Arrow` with tension != 0
2018-05-16 11:32:57 +08:00
* Some fixes for `Konva.Transformer`
2018-04-24 12:08:02 +08:00
2019-08-17 13:47:48 +08:00
## 2.0.3 - 2018-04-21
2018-04-21 09:06:09 +08:00
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
2018-04-19 15:38:59 +08:00
* Fixed flow for `contextmenu` event. Now it will be triggered on shapes too
2018-03-29 19:41:36 +08:00
* `find()` method for Containers can use a function as a parameter
2018-03-16 11:53:50 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-03-21 13:04:57 +08:00
* some bugs fixes for `group.getClientRect()`
2018-04-02 11:51:36 +08:00
* `Konva.Arrow` will not draw dash for pointers
2018-04-11 10:01:10 +08:00
* setAttr will trigger change event if new value is the same Object
2018-04-11 12:11:54 +08:00
* better behavior of `dblclick` event when you click fast on different shapes
2018-04-19 15:38:59 +08:00
* `stage.toDataURL` will use `pixelRatio = 1` by default.
2018-03-21 13:04:57 +08:00
2019-08-17 13:47:48 +08:00
## 2.0.2 - 2018-03-15
2018-03-16 09:56:08 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-03-16 09:56:08 +08:00
* Even more bugs fixes for `Konva.Transformer`
2019-08-17 13:47:48 +08:00
## 2.0.1 - 2018-03-15
2018-03-15 15:11:01 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-03-15 15:11:01 +08:00
* Several bugs fixes for `Konva.Transformer`
2018-03-15 14:38:49 +08:00
2019-08-17 13:47:48 +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
2018-08-10 11:22:08 +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.
2019-08-17 13:47:48 +08:00
## 1.7.6 - 2017-11-01
2017-11-01 11:17:14 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Some typescript fixes
2017-11-01 11:17:14 +08:00
2019-08-17 13:47:48 +08:00
## 1.7.4 - 2017-10-30
2017-10-19 17:33:08 +08:00
2018-08-10 11:22:08 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* `isBrowser` detection for electron
2017-10-30 14:07:21 +08:00
2019-08-17 13:47:48 +08:00
## 1.7.3 - 2017-10-19
2017-10-30 14:07:21 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.7.2 - 2017-10-11
2017-10-11 17:38:16 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed `Konva.document is undefined`
2017-10-11 17:38:16 +08:00
2019-08-17 13:47:48 +08:00
## 1.7.1 - 2017-10-11
2017-10-11 16:17:54 +08:00
### 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
2019-08-17 13:47:48 +08:00
## 1.7.0 - 2017-10-08
2017-10-08 18:04:39 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.6.8 - 2017-08-19
2017-08-19 15:01:38 +08:00
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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 1.6.3 - 2017-05-24
2017-05-25 02:53:22 +08:00
### 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
2019-08-17 13:47:48 +08:00
## 1.6.2 - 2017-05-08
2017-05-08 20:20:40 +08:00
### 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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 1.6.0 - 2017-04-21
2017-04-22 00:11:43 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.5.0 - 2017-03-20
2017-03-20 19:54:27 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.4.0 - 2017-02-07
2017-02-08 00:42:24 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.3.0 - 2017-01-10
2017-01-10 21:29:09 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.2.2 - 2016-09-15
2016-09-20 21:35:30 +08:00
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
2019-08-17 13:47:48 +08:00
## 1.2.0 - 2016-09-15
2016-09-16 05:16:29 +08:00
## 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
2019-08-17 13:47:48 +08:00
## 1.1.4 - 2016-09-13
2016-09-14 02:26:16 +08:00
### 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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 1.1.2 - 2016-09-10
2016-09-10 19:57:50 +08:00
### 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
2019-08-17 13:47:48 +08:00
## 1.1.1 - 2016-08-30
2016-08-30 14:09:19 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed #166 bug of drag& drop
2016-08-30 14:09:19 +08:00
2019-08-17 13:47:48 +08:00
## 1.1.0 - 2016-08-21
2016-08-21 13:59:25 +08:00
## Added
2018-01-04 11:59:14 +08:00
* new property of `Konva.Shape` - `preventDefault` .
2016-08-21 13:59:25 +08:00
2019-08-17 13:47:48 +08:00
## 1.0.3 - 2016-08-14
2016-08-14 14:00:00 +08:00
### Fixed
2018-01-04 11:59:14 +08:00
* Fixed some typescript definitions
2016-08-14 14:00:00 +08:00
2019-08-17 13:47:48 +08:00
## 1.0.2 - 2016-07-08
2016-07-08 11:44:15 +08:00
## 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
2019-08-17 13:47:48 +08:00
## 1.0.1 - 2016-07-05
2016-07-05 10:59:41 +08:00
### 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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 0.15.0 - 2016-06-18
2016-06-18 23:31:50 +08:00
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
2019-08-17 13:47:48 +08:00
## 0.14.0 - 2016-06-17
2016-06-17 15:09:37 +08:00
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
2019-08-17 13:47:48 +08:00
## 0.13.9 - 2016-05-14
2016-05-14 23:17:33 +08:00
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
2019-08-17 13:47:48 +08:00
## 0.12.4 - 2016-04-19
2016-04-19 17:16:58 +08:00
### 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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 0.12.2 - 2016-03-31
2016-04-07 12:03:51 +08:00
### 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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +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
2019-08-17 13:47:48 +08:00
## 0.9.5 - 2015-05-28
2015-05-28 14:17:34 +08:00
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
2019-08-17 13:47:48 +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` .
2019-02-24 09:54:20 +08:00
* new `perfectDrawEnabled` property for shape. See [http://konvajs.org/docs/performance/Disable_Perfect_Draw.html ](http://konvajs.org/docs/performance/Disable_Perfect_Draw.html )
* new `shadowForStrokeEnabled` property for shape. See [http://konvajs.org/docs/performance/All_Performance_Tips.html ](http://konvajs.org/docs/performance/All_Performance_Tips.html )
2018-01-04 11:59:14 +08:00
* new `getClientRect` method.
* new `to` method for every node for shorter tweening
2015-05-04 17:56:54 +08:00
2019-08-17 13:47:48 +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()`