mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
Release version 0.12.0
This commit is contained in:
parent
8ef5773ea1
commit
a66391678e
7 changed files with 32252 additions and 13 deletions
1
dist/paper-core.js
vendored
1
dist/paper-core.js
vendored
|
@ -1 +0,0 @@
|
|||
../src/load.js
|
15250
dist/paper-core.js
vendored
Normal file
15250
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
|
16994
dist/paper-full.js
vendored
Normal file
16994
dist/paper-full.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -39,9 +39,9 @@ gulp.task('publish', function() {
|
|||
// publish:website comes before publish:release, so paperjs.zip file is gone
|
||||
// before npm publish:
|
||||
return run(
|
||||
'publish:json',
|
||||
'publish:dist',
|
||||
'publish:packages',
|
||||
//'publish:json',
|
||||
// 'publish:dist',
|
||||
// 'publish:packages',
|
||||
'publish:commit',
|
||||
'publish:website',
|
||||
'publish:release',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "paper",
|
||||
"version": "0.11.8",
|
||||
"version": "0.12.0",
|
||||
"description": "The Swiss Army Knife of Vector Graphics Scripting",
|
||||
"license": "MIT",
|
||||
"homepage": "http://paperjs.org",
|
||||
|
@ -9,10 +9,7 @@
|
|||
"url": "https://github.com/paperjs/paper.js"
|
||||
},
|
||||
"bugs": "https://github.com/paperjs/paper.js/issues",
|
||||
"contributors": [
|
||||
"Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
|
||||
"Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"
|
||||
],
|
||||
"contributors": ["Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)", "Jonathan Puckey <jonathan@studiomoniker.com> (http://studiomoniker.com)"],
|
||||
"main": "dist/paper-full.js",
|
||||
"scripts": {
|
||||
"precommit": "gulp jshint --branch develop",
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit f601084fc319734d0bf47da700d6b6bff95260ba
|
||||
Subproject commit c3f055710eb887af55ea7039fbba50c9592fa4c4
|
|
@ -1 +1 @@
|
|||
Subproject commit a07b7d149f02e980dfd837cd595f5000a9d5e052
|
||||
Subproject commit c4b6382389f13c065c4dc9be430b3bec2326dc23
|
|
@ -17,7 +17,7 @@
|
|||
// The paper.js version.
|
||||
// NOTE: Adjust value here before calling `gulp publish`, which then updates and
|
||||
// publishes the various JSON package files automatically.
|
||||
var version = '0.11.8';
|
||||
var version = '0.12.0';
|
||||
|
||||
// If this file is loaded in the browser, we're in load.js mode.
|
||||
var load = typeof window === 'object';
|
||||
|
|
Loading…
Reference in a new issue