Skip to content

Commit

Permalink
Release version 0.12.17
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Nov 3, 2022
1 parent ee38c2b commit f63b14e
Show file tree
Hide file tree
Showing 5 changed files with 2,041 additions and 8 deletions.
12 changes: 6 additions & 6 deletions assets/js/paper.js
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
*
***
*
Expand Down Expand Up @@ -821,7 +821,7 @@ var PaperScope = Base.extend({
}
},

version: "0.12.16",
version: "0.12.17",

getView: function() {
var project = this.project;
Expand Down Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion content/08-Reference/classes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1>Index<span class="version text">0.12.16</span></h1>
<h1>Index<span class="version text">0.12.17</span></h1>
<div class="reference"><ul class="reference-classes"><li><a href="/reference/global">Global Scope</a></li>
<li>
<h2>Basic Types</h2>
Expand Down
Binary file added content/11-Download/paperjs-v0.12.17.zip
Binary file not shown.
Loading

0 comments on commit f63b14e

Please sign in to comment.