Skip to content

Commit dbe5102

Browse files
committed
Release version 0.12.17
1 parent ee38c2b commit dbe5102

File tree

5 files changed

+2041
-8
lines changed

5 files changed

+2041
-8
lines changed

assets/js/paper.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Paper.js v0.12.16 - The Swiss Army Knife of Vector Graphics Scripting.
2+
* Paper.js v0.12.17 - The Swiss Army Knife of Vector Graphics Scripting.
33
* http://paperjs.org/
44
*
55
* Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey
@@ -9,7 +9,7 @@
99
*
1010
* All rights reserved.
1111
*
12-
* Date: Thu Oct 20 17:38:51 2022 +0200
12+
* Date: Thu Nov 3 21:15:36 2022 +0100
1313
*
1414
***
1515
*
@@ -821,7 +821,7 @@ var PaperScope = Base.extend({
821821
}
822822
},
823823

824-
version: "0.12.16",
824+
version: "0.12.17",
825825

826826
getView: function() {
827827
var project = this.project;
@@ -14372,9 +14372,9 @@ var CanvasProvider = Base.exports.CanvasProvider = {
1437214372
return canvas;
1437314373
},
1437414374

14375-
getContext: function(width, height) {
14376-
var canvas = this.getCanvas(width, height);
14377-
return canvas ? canvas.getContext('2d') : null;
14375+
getContext: function(width, height, options) {
14376+
var canvas = this.getCanvas(width, height, options);
14377+
return canvas ? canvas.getContext('2d', options || {}) : null;
1437814378
},
1437914379

1438014380
release: function(obj) {

content/08-Reference/classes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1>Index<span class="version text">0.12.16</span></h1>
1+
<h1>Index<span class="version text">0.12.17</span></h1>
22
<div class="reference"><ul class="reference-classes"><li><a href="/reference/global">Global Scope</a></li>
33
<li>
44
<h2>Basic Types</h2>
1.63 MB
Binary file not shown.

0 commit comments

Comments
 (0)