mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
89e33a29c6
commit
1f3e4c2660
@ -4,9 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [Not released][Not released]
|
## [Not released][Not released]
|
||||||
|
|
||||||
|
## [1.7.3][2017-10-19]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Changing size of a stage will redraw it in synchronous way
|
- Changing size of a stage will redraw it in synchronous way
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Some fixes special for nodejs
|
||||||
|
|
||||||
|
|
||||||
## [1.7.2][2017-10-11]
|
## [1.7.2][2017-10-11]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
var Konva = require('konva');
|
var Konva = require('../dist/konva-dev');
|
||||||
|
|
||||||
var Canvas = require('canvas');
|
var Canvas = require('canvas');
|
||||||
|
|
||||||
|
6
konva.js
6
konva.js
@ -2,7 +2,7 @@
|
|||||||
* Konva JavaScript Framework v1.7.2
|
* Konva JavaScript Framework v1.7.2
|
||||||
* http://konvajs.github.io/
|
* http://konvajs.github.io/
|
||||||
* Licensed under the MIT or GPL Version 2 licenses.
|
* Licensed under the MIT or GPL Version 2 licenses.
|
||||||
* Date: Tue Oct 17 2017
|
* Date: Thu Oct 19 2017
|
||||||
*
|
*
|
||||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||||
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
|
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
|
||||||
@ -245,8 +245,8 @@
|
|||||||
glob.Konva = Konva;
|
glob.Konva = Konva;
|
||||||
Konva.global = glob;
|
Konva.global = glob;
|
||||||
|
|
||||||
Konva.document = document;
|
Konva.document = glob.document;
|
||||||
Konva.window = window;
|
Konva.window = glob;
|
||||||
|
|
||||||
if (typeof exports === 'object') {
|
if (typeof exports === 'object') {
|
||||||
module.exports = Konva;
|
module.exports = Konva;
|
||||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -54,5 +54,8 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/konvajs/konva.git"
|
"url": "git://github.com/konvajs/konva.git"
|
||||||
},
|
},
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"konva-node": "^0.5.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -244,9 +244,8 @@
|
|||||||
}
|
}
|
||||||
glob.Konva = Konva;
|
glob.Konva = Konva;
|
||||||
Konva.global = glob;
|
Konva.global = glob;
|
||||||
|
Konva.window = glob;
|
||||||
Konva.document = document;
|
Konva.document = glob.document;
|
||||||
Konva.window = window;
|
|
||||||
|
|
||||||
if (typeof exports === 'object') {
|
if (typeof exports === 'object') {
|
||||||
module.exports = Konva;
|
module.exports = Konva;
|
||||||
|
Loading…
Reference in New Issue
Block a user