update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2020-02-25 19:24:15 -05:00
parent c6e38c55a1
commit c44b2732d0
2 changed files with 10 additions and 6 deletions

View File

@ -8,7 +8,7 @@
* Konva JavaScript Framework v4.1.5 * Konva JavaScript Framework v4.1.5
* http://konvajs.org/ * http://konvajs.org/
* Licensed under the MIT * Licensed under the MIT
* Date: Mon Feb 24 2020 * Date: Tue Feb 25 2020
* *
* 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 - present by Anton Lavrenov (Konva) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -2307,7 +2307,9 @@
return this._canvas.toDataURL(); return this._canvas.toDataURL();
} }
catch (err) { catch (err) {
Util.error('Unable to get data URL. ' + err.message); Util.error('Unable to get data URL. ' +
err.message +
'. For more info read https://konvajs.org/docs/posts/Tainted_Canvas.html.');
return ''; return '';
} }
} }
@ -2881,7 +2883,7 @@
if (typeof filter !== 'function') { if (typeof filter !== 'function') {
Util.error('Filter should be type of function, but got ' + Util.error('Filter should be type of function, but got ' +
typeof filter + typeof filter +
' insted. Please check correct filters'); ' instead. Please check correct filters');
continue; continue;
} }
filter.call(this, imageData); filter.call(this, imageData);
@ -2889,7 +2891,9 @@
} }
} }
catch (e) { catch (e) {
Util.error('Unable to apply filter. ' + e.message); Util.error('Unable to apply filter. ' +
e.message +
'. This post my help you https://konvajs.org/docs/posts/Tainted_Canvas.html.');
} }
this._filterUpToDate = true; this._filterUpToDate = true;
} }

4
konva.min.js vendored

File diff suppressed because one or more lines are too long