mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Bump version to v0.9.7
This commit is contained in:
parent
899ec1d360
commit
041586fa01
8 changed files with 10522 additions and 36 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper",
|
"name": "paper",
|
||||||
"version": "0.9.6",
|
"version": "0.9.7",
|
||||||
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"Jürg Lehni <juerg@lehni.org> (http://lehni.org)",
|
"Jürg Lehni <juerg@lehni.org> (http://lehni.org)",
|
||||||
|
|
15
dist/paper-core.js
vendored
15
dist/paper-core.js
vendored
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* Paper.js v0.9.6 - The Swiss Army Knife of Vector Graphics Scripting.
|
* Paper.js v0.9.7 - The Swiss Army Knife of Vector Graphics Scripting.
|
||||||
* http://paperjs.org/
|
* http://paperjs.org/
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
* Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Date: Thu Jun 27 03:21:56 2013 -0700
|
* Date: Thu Jun 27 14:31:03 2013 -0700
|
||||||
*
|
*
|
||||||
***
|
***
|
||||||
*
|
*
|
||||||
|
@ -242,6 +242,9 @@ var Base = new function() {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (typeof module !== 'undefined')
|
||||||
|
module.exports = Base;
|
||||||
|
|
||||||
Base.inject({
|
Base.inject({
|
||||||
generics: true,
|
generics: true,
|
||||||
|
|
||||||
|
@ -667,7 +670,7 @@ var PaperScope = Base.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
version: '0.9.6',
|
version: '0.9.7',
|
||||||
|
|
||||||
getView: function() {
|
getView: function() {
|
||||||
return this.project && this.project.view;
|
return this.project && this.project.view;
|
||||||
|
@ -8825,7 +8828,8 @@ var View = Base.extend(Callback, {
|
||||||
}
|
}
|
||||||
element.width = size.width;
|
element.width = size.width;
|
||||||
element.height = size.height;
|
element.height = size.height;
|
||||||
if (PaperScope.hasAttribute(element, 'stats')) {
|
if (PaperScope.hasAttribute(element, 'stats')
|
||||||
|
&& typeof Stats !== 'undefined') {
|
||||||
this._stats = new Stats();
|
this._stats = new Stats();
|
||||||
var stats = this._stats.domElement,
|
var stats = this._stats.domElement,
|
||||||
style = stats.style,
|
style = stats.style,
|
||||||
|
@ -11051,7 +11055,8 @@ paper = new (PaperScope.inject(Base.merge(Base.exports, {
|
||||||
Base: Base,
|
Base: Base,
|
||||||
Numerical: Numerical,
|
Numerical: Numerical,
|
||||||
DomElement: DomElement,
|
DomElement: DomElement,
|
||||||
DomEvent: DomEvent
|
DomEvent: DomEvent,
|
||||||
|
Key: Key
|
||||||
})))();
|
})))();
|
||||||
|
|
||||||
if (typeof define === 'function' && define.amd)
|
if (typeof define === 'function' && define.amd)
|
||||||
|
|
12
dist/paper-core.min.js
vendored
12
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
22
dist/paper-full.js
vendored
22
dist/paper-full.js
vendored
File diff suppressed because one or more lines are too long
14
dist/paper-full.min.js
vendored
14
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
10469
dist/paper-node.js
vendored
Normal file
10469
dist/paper-node.js
vendored
Normal file
File diff suppressed because one or more lines are too long
22
dist/paper.js
vendored
22
dist/paper.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper",
|
"name": "paper",
|
||||||
"version": "0.9.6",
|
"version": "0.9.7",
|
||||||
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"Jürg Lehni <juerg@lehni.org> (http://lehni.org)",
|
"Jürg Lehni <juerg@lehni.org> (http://lehni.org)",
|
||||||
|
|
Loading…
Reference in a new issue