mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 18:24:17 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
dd3cdd44e0
commit
1263ac9396
@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## Not released:
|
||||
|
||||
## 4.1.2 - 2020-01-08
|
||||
|
||||
* Fix possible `NaN` in content calculations
|
||||
|
||||
## 4.1.1 - 2020-01-07
|
||||
|
||||
* Add ability to use `width = 0` and `height = 0` for `Konva.Image`.
|
||||
|
8
konva.js
8
konva.js
@ -8,7 +8,7 @@
|
||||
* Konva JavaScript Framework v4.1.1
|
||||
* http://konvajs.org/
|
||||
* Licensed under the MIT
|
||||
* Date: Tue Jan 07 2020
|
||||
* Date: Wed Jan 08 2020
|
||||
*
|
||||
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
|
||||
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
|
||||
@ -6528,8 +6528,10 @@
|
||||
return {
|
||||
top: rect.top,
|
||||
left: rect.left,
|
||||
scaleX: rect.width / this.content.clientWidth,
|
||||
scaleY: rect.height / this.content.clientHeight,
|
||||
// sometimes clientWidth can be equals to 0
|
||||
// i saw it in react-konva test, looks like it is because of hidden testing element
|
||||
scaleX: rect.width / this.content.clientWidth || 1,
|
||||
scaleY: rect.height / this.content.clientHeight || 1,
|
||||
};
|
||||
};
|
||||
Stage.prototype._buildDOM = function () {
|
||||
|
4
konva.min.js
vendored
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1005,8 +1005,10 @@ export class Stage extends Container<BaseLayer> {
|
||||
return {
|
||||
top: rect.top,
|
||||
left: rect.left,
|
||||
scaleX: rect.width / this.content.clientWidth,
|
||||
scaleY: rect.height / this.content.clientHeight,
|
||||
// sometimes clientWidth can be equals to 0
|
||||
// i saw it in react-konva test, looks like it is because of hidden testing element
|
||||
scaleX: rect.width / this.content.clientWidth || 1,
|
||||
scaleY: rect.height / this.content.clientHeight || 1,
|
||||
};
|
||||
}
|
||||
_buildDOM() {
|
||||
|
Loading…
Reference in New Issue
Block a user