From f63b14e11ee056aef7a21b7210b241a13e2f64fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rg=20Lehni?= Date: Thu, 3 Nov 2022 21:20:23 +0100 Subject: [PATCH] Release version 0.12.17 --- assets/js/paper.js | 12 +- content/08-Reference/classes.txt | 2 +- content/11-Download/paperjs-v0.12.17.zip | Bin 0 -> 1707952 bytes package-lock.json | 2033 ++++++++++++++++++++++ package.json | 2 +- 5 files changed, 2041 insertions(+), 8 deletions(-) create mode 100644 content/11-Download/paperjs-v0.12.17.zip create mode 100644 package-lock.json diff --git a/assets/js/paper.js b/assets/js/paper.js index 60d1e0a..3bbdfbf 100644 --- a/assets/js/paper.js +++ b/assets/js/paper.js @@ -1,5 +1,5 @@ /*! - * Paper.js v0.12.16 - The Swiss Army Knife of Vector Graphics Scripting. + * Paper.js v0.12.17 - The Swiss Army Knife of Vector Graphics Scripting. * http://paperjs.org/ * * Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey @@ -9,7 +9,7 @@ * * All rights reserved. * - * Date: Thu Oct 20 17:38:51 2022 +0200 + * Date: Thu Nov 3 21:15:36 2022 +0100 * *** * @@ -821,7 +821,7 @@ var PaperScope = Base.extend({ } }, - version: "0.12.16", + version: "0.12.17", getView: function() { var project = this.project; @@ -14372,9 +14372,9 @@ var CanvasProvider = Base.exports.CanvasProvider = { return canvas; }, - getContext: function(width, height) { - var canvas = this.getCanvas(width, height); - return canvas ? canvas.getContext('2d') : null; + getContext: function(width, height, options) { + var canvas = this.getCanvas(width, height, options); + return canvas ? canvas.getContext('2d', options || {}) : null; }, release: function(obj) { diff --git a/content/08-Reference/classes.txt b/content/08-Reference/classes.txt index 18788e1..91e999d 100644 --- a/content/08-Reference/classes.txt +++ b/content/08-Reference/classes.txt @@ -1,4 +1,4 @@ -

Index0.12.16

+

Index0.12.17