update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2019-09-17 12:57:01 -05:00
parent 870bbfb2cc
commit 1fa53d73e0
4 changed files with 7 additions and 16 deletions

View File

@ -5,7 +5,7 @@
}(this, function () { 'use strict';
/*
* Konva JavaScript Framework v4.0.11
* Konva JavaScript Framework v4.0.12
* http://konvajs.org/
* Licensed under the MIT
* Date: Tue Sep 17 2019
@ -76,7 +76,7 @@
: {};
var Konva = {
_global: glob,
version: '4.0.11',
version: '4.0.12',
isBrowser: detectBrowser(),
isUnminified: /param/.test(function (param) { }.toString()),
dblClickWindow: 400,

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -36,7 +36,8 @@ git pull >/dev/null
echo "Lint, build and test"
npm run lint >/dev/null
npm run build >/dev/null
npm run full-build >/dev/null
echo "commit change log updates"
git commit -am "update CHANGELOG with new version" --allow-empty >/dev/null

View File

@ -884,7 +884,7 @@ suite('Transformer', function() {
assert.equal(rect.height(), 100);
});
test.only('test padding + keep ratio', function() {
test.skip('test padding + keep ratio', function() {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);
@ -907,16 +907,6 @@ suite('Transformer', function() {
layer.add(tr);
layer.draw();
var width = rect.width() * rect.scaleX();
var height = rect.height() * rect.scaleY();
rect.on('transformstart transform', () => {
var width = rect.width() * rect.scaleX();
var height = rect.height() * rect.scaleY();
});
throw '';
stage.simulateMouseDown({
x: 250,
y: 150