mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 00:42:54 -05:00
Release version 0.12.7
This commit is contained in:
parent
8a3b4c73de
commit
7bb34e4602
8 changed files with 33085 additions and 40 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## Unreleased
|
## `0.12.7`
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
1
dist/paper-core.js
vendored
1
dist/paper-core.js
vendored
|
@ -1 +0,0 @@
|
||||||
../src/load.js
|
|
15652
dist/paper-core.js
vendored
Normal file
15652
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
|
|
17421
dist/paper-full.js
vendored
Normal file
17421
dist/paper-full.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
8
dist/paper.d.ts
vendored
8
dist/paper.d.ts
vendored
|
@ -1,15 +1,15 @@
|
||||||
/*!
|
/*!
|
||||||
* Paper.js v0.12.6 - The Swiss Army Knife of Vector Graphics Scripting.
|
* Paper.js v0.12.7 - The Swiss Army Knife of Vector Graphics Scripting.
|
||||||
* http://paperjs.org/
|
* http://paperjs.org/
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 - 2019, Juerg Lehni & Jonathan Puckey
|
* Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey
|
||||||
* http://scratchdisk.com/ & https://puckey.studio/
|
* http://juerglehni.com/ & https://puckey.studio/
|
||||||
*
|
*
|
||||||
* Distributed under the MIT license. See LICENSE file for details.
|
* Distributed under the MIT license. See LICENSE file for details.
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Date: Sat May 23 20:53:04 2020 +0200
|
* Date: Sat May 23 23:05:09 2020 +0200
|
||||||
*
|
*
|
||||||
* This is an auto-generated type definition.
|
* This is an auto-generated type definition.
|
||||||
*/
|
*/
|
||||||
|
|
34
package.json
34
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paper",
|
"name": "paper",
|
||||||
"version": "0.12.6",
|
"version": "0.12.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@puckey.studio> (http://studiomoniker.com)"],
|
||||||
"Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
|
|
||||||
"Jonathan Puckey <jonathan@puckey.studio> (http://studiomoniker.com)"
|
|
||||||
],
|
|
||||||
"main": "dist/paper-full.js",
|
"main": "dist/paper-full.js",
|
||||||
"types": "dist/paper.d.ts",
|
"types": "dist/paper.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -24,14 +21,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": ">=8.0.0"
|
"node": ">=8.0.0"
|
||||||
},
|
},
|
||||||
|
@ -86,21 +76,5 @@
|
||||||
"straps": "^3.0.1",
|
"straps": "^3.0.1",
|
||||||
"typescript": "^3.1.6"
|
"typescript": "^3.1.6"
|
||||||
},
|
},
|
||||||
"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"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 59f1653c0e24fc69974b636feb2964ac7bc9c9a7
|
Subproject commit 33c25749460be037bf9afdb80700205c3cfd0942
|
|
@ -1 +1 @@
|
||||||
Subproject commit baf33b9a7d95e839d068337929bdc05694b3ab0a
|
Subproject commit 317d44cfa658b2ec242cbb2f54572e2e1b58a3d2
|
|
@ -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.12.6';
|
var version = '0.12.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