From 4f9140539e1736349b2426e7437dd887dba77806 Mon Sep 17 00:00:00 2001 From: lavrton Date: Tue, 14 Apr 2015 09:56:56 +0700 Subject: [PATCH] update changelog --- CHANGELOG.md | 4 +++- test/unit/filters/Filter-test.js | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc57324a..883b296d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/test/unit/filters/Filter-test.js b/test/unit/filters/Filter-test.js index c5087020..cd3757a8 100644 --- a/test/unit/filters/Filter-test.js +++ b/test/unit/filters/Filter-test.js @@ -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; }); }); \ No newline at end of file