mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 14:53:09 +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
|
### Fixed
|
||||||
- `to` don't throw error if no `onFinish` callback
|
- `to` don't throw error if no `onFinish` callback
|
||||||
|
- HDPI support for desktop
|
||||||
|
- Fix bug when filters on not correct for HDPI
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- context wrapper is more capable with native context.
|
- 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]
|
## [0.9.0][2015-02-27]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
suite.only('Filter', function() {
|
suite('Filter', function() {
|
||||||
|
|
||||||
test('pixelRaio check', function () {
|
test('pixelRaio check', function () {
|
||||||
Konva.pixelRatio = 2;
|
Konva.pixelRatio = 2;
|
||||||
@ -22,7 +22,9 @@ suite.only('Filter', function() {
|
|||||||
circle.blurRadius(0);
|
circle.blurRadius(0);
|
||||||
layer.draw();
|
layer.draw();
|
||||||
|
|
||||||
cloneAndCompareLayer(layer, 20);
|
if (!window.mochaPhantomJS) {
|
||||||
|
cloneAndCompareLayer(layer, 50);
|
||||||
|
}
|
||||||
Konva.pixelRatio = 1;
|
Konva.pixelRatio = 1;
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user