File tree Expand file tree Collapse file tree 4 files changed +36
-8
lines changed
Expand file tree Collapse file tree 4 files changed +36
-8
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name": "jspdf",
3+ "version": "1.1.134",
4+ "homepage": "https://github.com/mrrio/jspdf",
5+ "description": "PDF Document creation from JavaScript",
6+ "main": "dist/jspdf.min.js",
7+ "moduleType": [
8+ "amd",
9+ "globals"
10+ ],
11+ "keywords": [
12+ "pdf"
13+ ],
14+ "license": "MIT",
15+ "ignore": [
16+ "**/.*",
17+ "libs",
18+ "CNAME",
19+ "jspdf.js",
20+ "examples/jspdf.PLUGINTEMPLATE.js",
21+ "plugins/*",
22+ "todo.txt",
23+ "wscript.py",
24+ "build.sh",
25+ "test",
26+ "tools"
27+ ]
28+ }
Original file line number Diff line number Diff line change 22#
33# Build script for jsPDF
44# (c) 2014 Diego Casorran
5+ # (c) 2015 James Hall
56#
67
78output=dist/jspdf.min.js
@@ -19,8 +20,7 @@ git submodule foreach git pull origin master
1920echo " Building version ${version} "
2021
2122# Update Bower
22- # cat ./bower.json \
23- # | sed "s/\"1\.0\.0\"/\"${version}\"/" >bower.json
23+ sed -i.bak " s/\" version\" : \" (.*)\" /\" ${version} \" /" bower.json
2424
2525# Fix conflict with adler32 & FileSaver
2626adler1=" libs/adler32cs.js/adler32cs.js"
Original file line number Diff line number Diff line change 11/** @preserve
22 * jsPDF - PDF Document creation from JavaScript
3- * Version 1.1.135-git Built on 2015-05-15T23:14
4- * CommitID 5d21c60018
3+ * Version 1.1.135-git Built on 2015-05-15T23:16
4+ * CommitID d98267b6f8
55 *
66 * Copyright (c) 2010-2014 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
77 * 2010 Aaron Spike, https://github.com/acspike
@@ -2035,7 +2035,7 @@ var jsPDF = (function(global) {
20352035 * pdfdoc.mymethod() // <- !!!!!!
20362036 */
20372037 jsPDF.API = {events:[]};
2038- jsPDF.version = "1.1.135-debug 2015-05-15T23:14 :jameshall";
2038+ jsPDF.version = "1.1.135-debug 2015-05-15T23:16 :jameshall";
20392039
20402040 if (typeof define === 'function' && define.amd) {
20412041 define('jsPDF', function() {
You can’t perform that action at this time.
0 commit comments