mirror of
https://github.com/konvajs/konva.git
synced 2025-09-19 10:47:59 +08:00
rebranding 0.7.0 release
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
## 5.2.1
|
||||
## Rebranding release 2015-01-28 (Differents from last official KineticJS release)
|
||||
|
||||
* Bug Fixes
|
||||
* `strokeScaleEnabled = false` is disabled for text as I can not find way to implement this
|
||||
@@ -6,8 +6,6 @@
|
||||
* Enhancements
|
||||
* `cornerRadius` of Rect is limited by `width/2` and `height/2`
|
||||
|
||||
## 5.2.0 2014-01-22
|
||||
|
||||
* Bug Fixes
|
||||
* working "this-example" as name for nodes
|
||||
* Konva.Text() with no config don't throws exception
|
||||
@@ -19,8 +17,6 @@
|
||||
* now you can move object that is dragging into another layer.
|
||||
* new `frameOffsets` attribute for `Konva.Sprite`
|
||||
|
||||
## 5.1.9 2014-01-09
|
||||
|
||||
* Bug Fixes
|
||||
* Correct stage resizing with `FastLayer`
|
||||
* `batchDraw` method for `FastLayer`
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "konva",
|
||||
"version": "5.2.0",
|
||||
"version": "0.7.0",
|
||||
"authors": [
|
||||
"Eric Rowell", "Anton Lavrenov"
|
||||
],
|
||||
|
14
konva.js
14
konva.js
@@ -1,9 +1,9 @@
|
||||
|
||||
/*
|
||||
* Konva JavaScript Framework v5.2.0
|
||||
* Konva JavaScript Framework v0.7.0
|
||||
* http://konvajs.github.io/
|
||||
* Licensed under the MIT or GPL Version 2 licenses.
|
||||
* Date: 2015-01-27
|
||||
* Date: 2015-01-28
|
||||
*
|
||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
|
||||
@@ -36,7 +36,7 @@ var Konva = {};
|
||||
|
||||
Konva = {
|
||||
// public
|
||||
version: '5.2.0',
|
||||
version: '0.7.0',
|
||||
|
||||
// private
|
||||
stages: [],
|
||||
@@ -9514,7 +9514,7 @@ var Konva = {};
|
||||
this.content.style.height = height + PX;
|
||||
|
||||
this.bufferCanvas.setSize(width, height);
|
||||
this.bufferCanvas2.setSize(width, height);
|
||||
// this.bufferCanvas2.setSize(width, height);
|
||||
this.bufferHitCanvas.setSize(width, height);
|
||||
|
||||
// set layer dimensions
|
||||
@@ -9916,9 +9916,9 @@ var Konva = {};
|
||||
this.bufferCanvas = new Konva.SceneCanvas({
|
||||
pixelRatio: 1
|
||||
});
|
||||
this.bufferCanvas2 = new Konva.SceneCanvas({
|
||||
pixelRatio: 1
|
||||
});
|
||||
// this.bufferCanvas2 = new Konva.SceneCanvas({
|
||||
// pixelRatio: 1
|
||||
// });
|
||||
this.bufferHitCanvas = new Konva.HitCanvas();
|
||||
|
||||
this._resizeDOM();
|
||||
|
6
konva.min.js
vendored
6
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "konva",
|
||||
"version": "5.2.0",
|
||||
"version": "0.7.0",
|
||||
"author": "Anton Lavrenov",
|
||||
"devDependencies": {
|
||||
"chai": "1.9.2",
|
||||
|
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"path" : "ink-docstrap",
|
||||
"tags" : {
|
||||
"allowUnknownTags" : true
|
||||
},
|
||||
|
@@ -309,7 +309,7 @@
|
||||
this.content.style.height = height + PX;
|
||||
|
||||
this.bufferCanvas.setSize(width, height);
|
||||
this.bufferCanvas2.setSize(width, height);
|
||||
// this.bufferCanvas2.setSize(width, height);
|
||||
this.bufferHitCanvas.setSize(width, height);
|
||||
|
||||
// set layer dimensions
|
||||
@@ -711,9 +711,9 @@
|
||||
this.bufferCanvas = new Konva.SceneCanvas({
|
||||
pixelRatio: 1
|
||||
});
|
||||
this.bufferCanvas2 = new Konva.SceneCanvas({
|
||||
pixelRatio: 1
|
||||
});
|
||||
// this.bufferCanvas2 = new Konva.SceneCanvas({
|
||||
// pixelRatio: 1
|
||||
// });
|
||||
this.bufferHitCanvas = new Konva.HitCanvas();
|
||||
|
||||
this._resizeDOM();
|
||||
|
Reference in New Issue
Block a user