update readme

This commit is contained in:
lavrton 2015-01-09 19:51:36 +07:00
parent 07622b64ae
commit 4e66cf3d3b
2 changed files with 35 additions and 4 deletions

21
CHANGELOG.md Normal file
View File

@ -0,0 +1,21 @@
## 5.1.9 2014-01-09
* Bug Fixes
* 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
* Enhancements
* npm package. See https://github.com/ericdrowell/KineticJS#installation
* 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))
* `Container.findOne()` method. (thanks [@pronebird](https://github.com/pronebird))

View File

@ -1,3 +1,13 @@
#KineticJS
[![Build Status](https://travis-ci.org/lavrton/KineticJS.png)](https://travis-ci.org/lavrton/KineticJS) [![npm version](https://badge.fury.io/js/kinetic.svg)](http://badge.fury.io/js/kinetic)
Greetings fellow webonauts! KineticJS is an HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications, and much more.
You can draw things onto the stage, add event listeners to them, move them, scale them, and rotate them independently from other shapes to support high performance animations, even if your application uses thousands of shapes. Served hot with a side of awesomeness.
Go to [http://lavrton.github.io/KineticJS/](http://lavrton.github.io/KineticJS/) for tutorial and documentation.
#Installation
* `bower install kineticjs`
@ -5,8 +15,6 @@
###NodeJS
Support of NodeJS is experimental.
We are using [node-canvas](https://github.com/LearnBoost/node-canvas) to create canvas element.
1. Install node-canvas [https://github.com/LearnBoost/node-canvas/wiki/_pages](https://github.com/LearnBoost/node-canvas/wiki/_pages)
@ -15,6 +23,10 @@ We are using [node-canvas](https://github.com/LearnBoost/node-canvas) to create
See file `nodejs-demo.js` for example.
#Change log
See [CHANGELOG.md](https://github.com/lavrton/KineticJS/blob/master/CHANGELOG.md).
#Dev environment
Before doing all dev stuff make sure you have node installed. After that, run `npm install --dev` in the main directory to install the node module dependencies.
@ -29,8 +41,6 @@ If you add a file in the src directory, be sure to add the filename to the sourc
##Testing
[![Build Status](https://travis-ci.org/lavrton/KineticJS.png)](https://travis-ci.org/lavrton/KineticJS)
KineticJS uses Mocha for testing.
* If you need run test only one time run `grunt test`.