Browse Source

PDF.js version 1.1.195

master v1.1.195
Pdf Bot 10 years ago
parent
commit
6587d8c383
  1. 2
      bower.json
  2. 8
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 8
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.1.193", "version": "1.1.195",
"main": [ "main": [
"build/pdf.js", "build/pdf.js",
"build/pdf.worker.js" "build/pdf.worker.js"

8
build/pdf.combined.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.193'; PDFJS.version = '1.1.195';
PDFJS.build = '4983c7b'; PDFJS.build = 'c205b80';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -23271,12 +23271,14 @@ var Font = (function FontClosure() {
case 0x7F: // Control char case 0x7F: // Control char
case 0xA0: // Non breaking space case 0xA0: // Non breaking space
case 0xAD: // Soft hyphen case 0xAD: // Soft hyphen
case 0x0E33: // Thai character SARA AM
case 0x2011: // Non breaking hyphen case 0x2011: // Non breaking hyphen
case 0x205F: // Medium mathematical space case 0x205F: // Medium mathematical space
case 0x25CC: // Dotted circle (combining mark) case 0x25CC: // Dotted circle (combining mark)
return true; return true;
} }
if ((code & ~0xFF) === 0x0E00) { // Thai/Lao chars (with combining mark)
return true;
}
return false; return false;
} }

4
build/pdf.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.193'; PDFJS.version = '1.1.195';
PDFJS.build = '4983c7b'; PDFJS.build = 'c205b80';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it

8
build/pdf.worker.js vendored

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.193'; PDFJS.version = '1.1.195';
PDFJS.build = '4983c7b'; PDFJS.build = 'c205b80';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -16918,12 +16918,14 @@ var Font = (function FontClosure() {
case 0x7F: // Control char case 0x7F: // Control char
case 0xA0: // Non breaking space case 0xA0: // Non breaking space
case 0xAD: // Soft hyphen case 0xAD: // Soft hyphen
case 0x0E33: // Thai character SARA AM
case 0x2011: // Non breaking hyphen case 0x2011: // Non breaking hyphen
case 0x205F: // Medium mathematical space case 0x205F: // Medium mathematical space
case 0x25CC: // Dotted circle (combining mark) case 0x25CC: // Dotted circle (combining mark)
return true; return true;
} }
if ((code & ~0xFF) === 0x0E00) { // Thai/Lao chars (with combining mark)
return true;
}
return false; return false;
} }

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.1.193", "version": "1.1.195",
"description": "Generic build of Mozilla's PDF.js library.", "description": "Generic build of Mozilla's PDF.js library.",
"keywords": [ "keywords": [
"Mozilla", "Mozilla",

Loading…
Cancel
Save