This commit is contained in:
Andrea Bogazzi 2018-05-29 10:57:16 +02:00 committed by GitHub
parent bafc28d3fc
commit 063592b8b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 28363 additions and 13812 deletions

View file

@ -1,3 +1,6 @@
**Version 2.3.1**
- Improve nested svg import and text positioning, spikes. [#4984](https://github.com/kangax/fabric.js/pull/4984)
**Version 2.3.0** **Version 2.3.0**
- Add and improve more events for transformations and mouse interaction [#4979](https://github.com/kangax/fabric.js/pull/4979) - Add and improve more events for transformations and mouse interaction [#4979](https://github.com/kangax/fabric.js/pull/4979)
- Improvement: whenever possible use cache for target transparency sampling [#4955](https://github.com/kangax/fabric.js/pull/4955) - Improvement: whenever possible use cache for target transparency sampling [#4955](https://github.com/kangax/fabric.js/pull/4955)

View file

@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */ /*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: '2.3.0' }; var fabric = fabric || { version: '2.3.1' };
if (typeof exports !== 'undefined') { if (typeof exports !== 'undefined') {
exports.fabric = fabric; exports.fabric = fabric;
} }

View file

@ -253,11 +253,6 @@ else {
process.exit(0); process.exit(0);
} }
// add js wrapping in AMD closure for requirejs if necessary
if (amdLib !== false) {
exec('uglifyjs fabric.js ' + amdUglifyFlags + ' -b --output fabric.js');
}
if (amdLib !== false) { if (amdLib !== false) {
console.log('Built distribution to ' + distributionPath + 'fabric.js (' + amdLib + '-compatible)'); console.log('Built distribution to ' + distributionPath + 'fabric.js (' + amdLib + '-compatible)');
} else { } else {

42161
dist/fabric.js vendored

File diff suppressed because it is too large Load diff

2
dist/fabric.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -2,7 +2,7 @@
"name": "fabric", "name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.", "description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/", "homepage": "http://fabricjs.com/",
"version": "2.3.0", "version": "2.3.1",
"author": "Juriy Zaytsev <kangax@gmail.com>", "author": "Juriy Zaytsev <kangax@gmail.com>",
"contributors": [ "contributors": [
{ {