Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HackbrettXXX committed Sep 28, 2018
1 parent 7b29336 commit 94b13cf
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 45 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jspdf-yworks",
"version": "1.3.2",
"version": "1.4.0",
"homepage": "https://github.com/yWorks/jsPDF",
"description": "PDF Document creation from JavaScript",
"main": "dist/jspdf.debug.js",
Expand Down
29 changes: 4 additions & 25 deletions dist/jspdf.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

/** @preserve
* jsPDF - PDF Document creation from JavaScript
* Version 1.3.2 Built on 2018-06-06T13:44:08.203Z
* CommitID ee8bcea89d
* Version 1.4.0 Built on 2018-09-28T16:25:56.169Z
* CommitID 7b29336d57
*
* Copyright (c) 2010-2014 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
* 2010 Aaron Spike, https://github.com/acspike
Expand Down Expand Up @@ -212,7 +212,6 @@
lineCapID = 0,
lineJoinID = 0,
content_length = 0,
withinClipPath = false,
renderTargets = {},
renderTargetMap = {},
renderTargetStack = [],
Expand Down Expand Up @@ -1341,10 +1340,6 @@
// puts the style for the previously drawn path. If a patternKey is provided, the pattern is used to fill
// the path. Use patternMatrix to transform the pattern to rhe right location.
putStyle = function putStyle(style, patternKey, patternData) {
if (withinClipPath) {
return;
}

style = getStyle(style);

// stroking / filling / both the path
Expand Down Expand Up @@ -2196,22 +2191,6 @@
return this.lines([[x2 - x1, y2 - y1]], x1, y1, [1, 1], "D");
};

API.beginClipPath = function () {
withinClipPath = true;

return this;
};

API.endClipPath = function () {
out("W n");
withinClipPath = false;

return this;
};

/**
* @deprecated use {@link beginClipPath} and {@link endClipPath} instead
*/
API.clip = function () {
// By patrick-roberts, github.com/MrRio/jsPDF/issues/328
// Call .clip() after calling .rect() with a style argument of null
Expand Down Expand Up @@ -3020,7 +2999,7 @@
* pdfdoc.mymethod() // <- !!!!!!
*/
jsPDF.API = { events: [] };
jsPDF.version = "1.3.2 2018-06-06T13:44:08.203Z:lukas-pc\lukas";
jsPDF.version = "1.4.0 2018-09-28T16:25:56.169Z:lukas-pc\lukas";

if (typeof define === 'function' && define.amd) {
define('jsPDF', function () {
Expand Down Expand Up @@ -12117,7 +12096,7 @@ Q\n";
if (typeof module === 'object') {
module.exports = callback();
} else if (typeof define === 'function') {
define("adler32", callback);
define('adler32cs', [], callback);
} else {
global.adler32cs = callback();
}
Expand Down
32 changes: 16 additions & 16 deletions dist/jspdf.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jspdf-yworks",
"version": "1.3.2",
"version": "1.4.0",
"homepage": "https://github.com/yWorks/jsPDF",
"description": "PDF Document creation from JavaScript",
"main": "dist/jspdf.min.js",
Expand Down

0 comments on commit 94b13cf

Please sign in to comment.