Release version 0.12.5

This commit is contained in:
Jürg Lehni 2020-05-23 16:23:20 +02:00
parent 7fcee5a911
commit c7684bb406
8 changed files with 33067 additions and 14 deletions

View file

@ -1,6 +1,6 @@
# Change Log
## Unreleased
## `0.12.5`
### Changed

1
dist/paper-core.js vendored
View file

@ -1 +0,0 @@
../src/load.js

15652
dist/paper-core.js vendored Normal file

File diff suppressed because it is too large Load diff

1
dist/paper-full.js vendored
View file

@ -1 +0,0 @@
../src/load.js

17403
dist/paper-full.js vendored Normal file

File diff suppressed because it is too large Load diff

14
dist/paper.d.ts vendored
View file

@ -1,5 +1,5 @@
/*!
* Paper.js v0.12.4 - The Swiss Army Knife of Vector Graphics Scripting.
* Paper.js v0.12.5 - The Swiss Army Knife of Vector Graphics Scripting.
* http://paperjs.org/
*
* Copyright (c) 2011 - 2019, Juerg Lehni & Jonathan Puckey
@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Dec 15 21:25:00 2019 +0100
* Date: Sat May 23 15:51:37 2020 +0200
*
* This is an auto-generated type definition.
*/
@ -2385,7 +2385,7 @@ declare namespace paper {
*
* @see Matrix#shear(shear[, center])
*
* @param shear - the horziontal and vertical shear factors as a point
* @param shear - the horizontal and vertical shear factors as a point
*/
shear(shear: Point, center?: Point): void
@ -2406,7 +2406,7 @@ declare namespace paper {
*
* @see Matrix#shear(skew[, center])
*
* @param skew - the horziontal and vertical skew angles in degrees
* @param skew - the horizontal and vertical skew angles in degrees
*/
skew(skew: Point, center?: Point): void
@ -5412,7 +5412,7 @@ declare namespace paper {
* @param point - the offset of the image as a point in pixel
* coordinates
*/
drawImage(image: HTMLImageElement | HTMLCanvasElement, point: Point): void
drawImage(image: CanvasImageSource, point: Point): void
/**
* Calculates the average color of the image within the given path,
@ -7181,7 +7181,7 @@ declare namespace paper {
*
* @see Matrix#shear(shear[, center])
*
* @param shear - the horziontal and vertical shear factors as a point
* @param shear - the horizontal and vertical shear factors as a point
*/
shear(shear: Point, center?: Point): void
@ -7200,7 +7200,7 @@ declare namespace paper {
*
* @see Matrix#shear(skew[, center])
*
* @param skew - the horziontal and vertical skew angles in degrees
* @param skew - the horizontal and vertical skew angles in degrees
*/
skew(skew: Point, center?: Point): void

View file

@ -1,6 +1,6 @@
{
"name": "paper",
"version": "0.12.4",
"version": "0.12.5",
"description": "The Swiss Army Knife of Vector Graphics Scripting",
"license": "MIT",
"homepage": "http://paperjs.org",

@ -1 +1 @@
Subproject commit 0fb6283f0955b8ee92fc9ac8838f167ea4a965d2
Subproject commit 9c3614b4ee5627b2e799135d9c3171cc9056fd10

@ -1 +1 @@
Subproject commit 1e276564106e5a29a6e00115c7e703cfc1fc2b09
Subproject commit 77ac84489d65ee693b58a54baeb86e5e8c1379a1

View file

@ -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.12.4';
var version = '0.12.5';
// If this file is loaded in the browser, we're in load.js mode.
var load = typeof window === 'object';