mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 10:47:37 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
870bbfb2cc
commit
1fa53d73e0
4
konva.js
4
konva.js
@ -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
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user