konva/CHANGELOG.md

107 lines
4.7 KiB
Markdown
Raw Normal View History

2015-02-17 14:01:01 +08:00
# Change Log
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
2015-03-10 20:16:13 +08:00
## [Not released][Not released]
2015-06-02 09:14:54 +08:00
### Changed
- Dragging now works much better. If your pointer is out of stage content dragging will still continue.
2015-05-28 14:17:34 +08:00
## [0.9.5][2015-05-28]
2015-03-10 20:16:13 +08:00
### Fixed
- `to` don't throw error if no `onFinish` callback
2015-04-14 10:56:56 +08:00
- 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
### Changed
- 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.
2015-05-05 08:30:57 +08:00
- `toDataURL` now handle pixelRatio. you can pass `config.pixelRatio` argument
- Correct `clone()` for custom nodes
2015-05-05 08:30:57 +08:00
- `FastLayer` now can have transforms
2015-05-25 12:26:30 +08:00
- `stage.toDataURL()` method now works in synchronous way. So `callback` argument is not required.
- `container.find(selector)` method now have 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
- new `Konva.Image.fromURL` method
2015-03-10 20:16:13 +08:00
2015-05-07 09:48:15 +08:00
### 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.
2015-05-28 12:48:33 +08:00
- `drawHitFunc` is deprecated. Use `hitFunc` instead.
2015-05-07 09:48:15 +08:00
- `rotateDeg` is deprecated. Use `rotate` instead.
2015-02-27 12:05:11 +08:00
## [0.9.0][2015-02-27]
2015-02-17 14:01:01 +08:00
### Fixed
- cache algorithm has A LOT OF updates.
2015-02-08 07:24:11 +08:00
2015-02-17 14:01:01 +08:00
### Changed
- `scale` now affect `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
- 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.
2015-02-26 09:18:08 +08:00
- new `to` method for every nodes for shorter tweening
2015-05-04 17:56:54 +08:00
2015-02-17 14:01:01 +08:00
## [0.8.0] - 2015-02-04
* Bug Fixes
2015-02-04 06:59:01 +08:00
* fixed when browser is crashing on pointer events fixed
* optimized `getIntersection` function
* Enhancements
2015-02-03 11:33:10 +08:00
* `container.findOne()` method
2015-02-03 11:40:32 +08:00
* new `strokeHitEnabled` property. Useful for performance optimizations
2015-02-03 16:52:19 +08:00
* typescript definitions. see `/resources/konva.d.ts`
2015-02-17 14:01:01 +08:00
## Rebranding release 2015-01-28
Differents from last official `KineticJS` release
2015-01-22 16:46:53 +08:00
* Bug Fixes
* `strokeScaleEnabled = false` is disabled for text as I can not find way to implement this
* `strokeScaleEnabled = false` for Line now create correct hit graph
2015-01-15 11:11:37 +08:00
* working "this-example" as name for nodes
2015-01-27 15:07:51 +08:00
* Konva.Text() with no config don't throws exception
* Konva.Line() with no config don't throws exception
2015-01-20 18:06:21 +08:00
* 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
2015-02-17 14:01:01 +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`
2015-01-20 18:06:21 +08:00
* 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 affect 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))
2015-02-17 14:01:01 +08:00
* `Container.findOne()`