mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 13:38:15 +08:00
update changelog
This commit is contained in:
parent
b44a78333e
commit
4f9140539e
@ -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]
|
||||
|
@ -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;
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user