From de89d0ad6d51a05718bfaaf036fb014fb2ae9915 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Mon, 22 Sep 2014 16:28:23 -0500 Subject: [PATCH] PDF.js version 1.0.429 --- bower.json | 2 +- build/pdf.combined.js | 10 ++++++++-- build/pdf.js | 4 ++-- build/pdf.worker.js | 10 ++++++++-- package.json | 2 +- 5 files changed, 20 insertions(+), 8 deletions(-) diff --git a/bower.json b/bower.json index d55420d9b..102084e67 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "pdfjs-dist", - "version": "1.0.427", + "version": "1.0.429", "keywords": [ "Mozilla", "pdf", diff --git a/build/pdf.combined.js b/build/pdf.combined.js index d410a1e09..3c7b8f172 100644 --- a/build/pdf.combined.js +++ b/build/pdf.combined.js @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { (typeof window !== 'undefined' ? window : this).PDFJS = {}; } -PDFJS.version = '1.0.427'; -PDFJS.build = 'bb7e7d3'; +PDFJS.version = '1.0.429'; +PDFJS.build = '10db93b'; (function pdfjsWrapper() { // Use strict in our context only - users might not want it @@ -29026,6 +29026,12 @@ var Font = (function FontClosure() { (code = parseInt(glyphName.substr(1), 16))) { toUnicode[charcode] = String.fromCharCode(code); } + // g00xx glyph + if (glyphName.length === 5 && + glyphName[0] === 'g' && + (code = parseInt(glyphName.substr(1), 16))) { + toUnicode[charcode] = String.fromCharCode(code); + } // Cddd glyph if (glyphName.length >= 3 && glyphName[0] === 'C' && diff --git a/build/pdf.js b/build/pdf.js index 68849170e..cc11f45ee 100644 --- a/build/pdf.js +++ b/build/pdf.js @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { (typeof window !== 'undefined' ? window : this).PDFJS = {}; } -PDFJS.version = '1.0.427'; -PDFJS.build = 'bb7e7d3'; +PDFJS.version = '1.0.429'; +PDFJS.build = '10db93b'; (function pdfjsWrapper() { // Use strict in our context only - users might not want it diff --git a/build/pdf.worker.js b/build/pdf.worker.js index b1d9d65fc..234d8d847 100644 --- a/build/pdf.worker.js +++ b/build/pdf.worker.js @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { (typeof window !== 'undefined' ? window : this).PDFJS = {}; } -PDFJS.version = '1.0.427'; -PDFJS.build = 'bb7e7d3'; +PDFJS.version = '1.0.429'; +PDFJS.build = '10db93b'; (function pdfjsWrapper() { // Use strict in our context only - users might not want it @@ -24190,6 +24190,12 @@ var Font = (function FontClosure() { (code = parseInt(glyphName.substr(1), 16))) { toUnicode[charcode] = String.fromCharCode(code); } + // g00xx glyph + if (glyphName.length === 5 && + glyphName[0] === 'g' && + (code = parseInt(glyphName.substr(1), 16))) { + toUnicode[charcode] = String.fromCharCode(code); + } // Cddd glyph if (glyphName.length >= 3 && glyphName[0] === 'C' && diff --git a/package.json b/package.json index 36dd4aae4..ff96c7577 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pdfjs-dist", - "version": "1.0.427", + "version": "1.0.429", "description": "Generic build of Mozilla's PDF.js library.", "keywords": [ "Mozilla",