mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-03-16 22:10:32 +00:00
built (#5003)
This commit is contained in:
parent
bafc28d3fc
commit
063592b8b5
6 changed files with 28363 additions and 13812 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
5
build.js
5
build.js
|
|
@ -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
42161
dist/fabric.js
vendored
File diff suppressed because it is too large
Load diff
2
dist/fabric.min.js
vendored
2
dist/fabric.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -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": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue