mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Release version 0.11.7
This commit is contained in:
parent
e043c6cbd5
commit
3cc3ce8f13
6 changed files with 31703 additions and 35 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## `Prebuilt`
|
## `0.11.7`
|
||||||
|
|
||||||
### News
|
### News
|
||||||
|
|
||||||
|
|
1
dist/paper-core.js
vendored
1
dist/paper-core.js
vendored
|
@ -1 +0,0 @@
|
||||||
../src/load.js
|
|
14977
dist/paper-core.js
vendored
Normal file
14977
dist/paper-core.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
dist/paper-full.js
vendored
1
dist/paper-full.js
vendored
|
@ -1 +0,0 @@
|
||||||
../src/load.js
|
|
16719
dist/paper-full.js
vendored
Normal file
16719
dist/paper-full.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -41,7 +41,7 @@ gulp.task('publish', function() {
|
||||||
return run(
|
return run(
|
||||||
'publish:json',
|
'publish:json',
|
||||||
'publish:dist',
|
'publish:dist',
|
||||||
'publish:packages',
|
// 'publish:packages',
|
||||||
'publish:commit',
|
'publish:commit',
|
||||||
'publish:website',
|
'publish:website',
|
||||||
'publish:release',
|
'publish:release',
|
||||||
|
|
34
package.json
34
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper",
|
"name": "paper",
|
||||||
"version": "0.11.5",
|
"version": "0.11.7",
|
||||||
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "http://paperjs.org",
|
"homepage": "http://paperjs.org",
|
||||||
|
@ -9,10 +9,7 @@
|
||||||
"url": "https://github.com/paperjs/paper.js"
|
"url": "https://github.com/paperjs/paper.js"
|
||||||
},
|
},
|
||||||
"bugs": "https://github.com/paperjs/paper.js/issues",
|
"bugs": "https://github.com/paperjs/paper.js/issues",
|
||||||
"contributors": [
|
"contributors": ["Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)", "Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"],
|
||||||
"Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
|
|
||||||
"Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"
|
|
||||||
],
|
|
||||||
"main": "dist/paper-full.js",
|
"main": "dist/paper-full.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"precommit": "gulp jshint --branch develop",
|
"precommit": "gulp jshint --branch develop",
|
||||||
|
@ -25,14 +22,7 @@
|
||||||
"jshint": "gulp jshint",
|
"jshint": "gulp jshint",
|
||||||
"test": "gulp test"
|
"test": "gulp test"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": ["AUTHORS.md", "CHANGELOG.md", "dist/", "examples/", "LICENSE.txt", "README.md"],
|
||||||
"AUTHORS.md",
|
|
||||||
"CHANGELOG.md",
|
|
||||||
"dist/",
|
|
||||||
"examples/",
|
|
||||||
"LICENSE.txt",
|
|
||||||
"README.md"
|
|
||||||
],
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4.0.0"
|
"node": ">=4.0.0"
|
||||||
},
|
},
|
||||||
|
@ -79,21 +69,5 @@
|
||||||
"./dist/node/self.js": false,
|
"./dist/node/self.js": false,
|
||||||
"./dist/node/extend.js": false
|
"./dist/node/extend.js": false
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": ["vector", "graphic", "graphics", "2d", "geometry", "bezier", "curve", "curves", "path", "paths", "canvas", "svg", "paper", "paper.js", "paperjs"]
|
||||||
"vector",
|
|
||||||
"graphic",
|
|
||||||
"graphics",
|
|
||||||
"2d",
|
|
||||||
"geometry",
|
|
||||||
"bezier",
|
|
||||||
"curve",
|
|
||||||
"curves",
|
|
||||||
"path",
|
|
||||||
"paths",
|
|
||||||
"canvas",
|
|
||||||
"svg",
|
|
||||||
"paper",
|
|
||||||
"paper.js",
|
|
||||||
"paperjs"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
// The paper.js version.
|
// The paper.js version.
|
||||||
// NOTE: Adjust value here before calling `gulp publish`, which then updates and
|
// NOTE: Adjust value here before calling `gulp publish`, which then updates and
|
||||||
// publishes the various JSON package files automatically.
|
// publishes the various JSON package files automatically.
|
||||||
var version = '0.11.5';
|
var version = '0.11.7';
|
||||||
|
|
||||||
// If this file is loaded in the browser, we're in load.js mode.
|
// If this file is loaded in the browser, we're in load.js mode.
|
||||||
var load = typeof window === 'object';
|
var load = typeof window === 'object';
|
||||||
|
|
Loading…
Reference in a new issue