1 v1.4.0 · hypercodingweb/jsPDF@94b13cf · GitHub
Skip to content

Commit 94b13cf

Browse files
committed
v1.4.0
1 parent 7b29336 commit 94b13cf

5 files changed

Lines changed: 24 additions & 45 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspdf-yworks",
3-
"version": "1.3.2",
3+
"version": "1.4.0",
44
"homepage": "https://github.com/yWorks/jsPDF",
55
"description": "PDF Document creation from JavaScript",
66
"main": "dist/jspdf.debug.js",

dist/jspdf.debug.js

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
/** @preserve
1616
* jsPDF - PDF Document creation from JavaScript
17-
* Version 1.3.2 Built on 2018-06-06T13:44:08.203Z
18-
* CommitID ee8bcea89d
17+
* Version 1.4.0 Built on 2018-09-28T16:25:56.169Z
18+
* CommitID 7b29336d57
1919
*
2020
* Copyright (c) 2010-2014 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
2121
* 2010 Aaron Spike, https://github.com/acspike
@@ -212,7 +212,6 @@
212212
lineCapID = 0,
213213
lineJoinID = 0,
214214
content_length = 0,
215-
withinClipPath = false,
216215
renderTargets = {},
217216
renderTargetMap = {},
218217
renderTargetStack = [],
@@ -1341,10 +1340,6 @@
13411340
// puts the style for the previously drawn path. If a patternKey is provided, the pattern is used to fill
13421341
// the path. Use patternMatrix to transform the pattern to rhe right location.
13431342
putStyle = function putStyle(style, patternKey, patternData) {
1344-
if (withinClipPath) {
1345-
return;
1346-
}
1347-
13481343
style = getStyle(style);
13491344

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

2199-
API.beginClipPath = function () {
2200-
withinClipPath = true;
2201-
2202-
return this;
2203-
};
2204-
2205-
API.endClipPath = function () {
2206-
out("W n");
2207-
withinClipPath = false;
2208-
2209-
return this;
2210-
};
2211-
2212-
/**
2213-
* @deprecated use {@link beginClipPath} and {@link endClipPath} instead
2214-
*/
22152194
API.clip = function () {
22162195
// By patrick-roberts, github.com/MrRio/jsPDF/issues/328
22172196
// Call .clip() after calling .rect() with a style argument of null
@@ -3020,7 +2999,7 @@
30202999
* pdfdoc.mymethod() // <- !!!!!!
30213000
*/
30223001
jsPDF.API = { events: [] };
3023-
jsPDF.version = "1.3.2 2018-06-06T13:44:08.203Z:lukas-pc\lukas";
3002+
jsPDF.version = "1.4.0 2018-09-28T16:25:56.169Z:lukas-pc\lukas";
30243003

30253004
if (typeof define === 'function' && define.amd) {
30263005
define('jsPDF', function () {
@@ -12117,7 +12096,7 @@ Q\n";
1211712096
if (typeof module === 'object') {
1211812097
module.exports = callback();
1211912098
} else if (typeof define === 'function') {
12120-
define("adler32", callback);
12099+
define('adler32cs', [], callback);
1212112100
} else {
1212212101
global.adler32cs = callback();
1212312102
}

dist/jspdf.min.js

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm-shrinkwrap.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspdf-yworks",
3-
"version": "1.3.2",
3+
"version": "1.4.0",
44
"homepage": "https://github.com/yWorks/jsPDF",
55
"description": "PDF Document creation from JavaScript",
66
"main": "dist/jspdf.min.js",

0 commit comments

Comments
 (0)