update changelog

This commit is contained in:
lavrton 2015-04-14 09:56:56 +07:00
parent b44a78333e
commit 4f9140539e
2 changed files with 7 additions and 3 deletions

View File

@ -6,10 +6,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- `to` don't throw error if no `onFinish` callback
- HDPI support for desktop
- Fix bug when filters on not correct for HDPI
### Changed
- context wrapper is more capable with native context.
So you can use `context.fillStyle` in your `sceneFunc` without accessing native context.
So you can use `context.fillStyle` property in your `sceneFunc` without accessing native context.
## [0.9.0][2015-02-27]

View File

@ -1,6 +1,6 @@
"use strict";
suite.only('Filter', function() {
suite('Filter', function() {
test('pixelRaio check', function () {
Konva.pixelRatio = 2;
@ -22,7 +22,9 @@ suite.only('Filter', function() {
circle.blurRadius(0);
layer.draw();
cloneAndCompareLayer(layer, 20);
if (!window.mochaPhantomJS) {
cloneAndCompareLayer(layer, 50);
}
Konva.pixelRatio = 1;
});
});