update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2017-10-19 15:03:08 +05:30
parent 89e33a29c6
commit 1f3e4c2660
6 changed files with 18 additions and 10 deletions

View File

@ -4,9 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
## [1.7.3][2017-10-19]
### Changed
- Changing size of a stage will redraw it in synchronous way
### Fixed
- Some fixes special for nodejs
## [1.7.2][2017-10-11]
### Fixed

View File

@ -1,4 +1,4 @@
var Konva = require('konva');
var Konva = require('../dist/konva-dev');
var Canvas = require('canvas');

View File

@ -2,7 +2,7 @@
* Konva JavaScript Framework v1.7.2
* http://konvajs.github.io/
* 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)
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
@ -245,8 +245,8 @@
glob.Konva = Konva;
Konva.global = glob;
Konva.document = document;
Konva.window = window;
Konva.document = glob.document;
Konva.window = glob;
if (typeof exports === 'object') {
module.exports = Konva;

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -54,5 +54,8 @@
"type": "git",
"url": "git://github.com/konvajs/konva.git"
},
"license": "MIT"
"license": "MIT",
"dependencies": {
"konva-node": "^0.5.2"
}
}

View File

@ -244,9 +244,8 @@
}
glob.Konva = Konva;
Konva.global = glob;
Konva.document = document;
Konva.window = window;
Konva.window = glob;
Konva.document = glob.document;
if (typeof exports === 'object') {
module.exports = Konva;