Skip to content

Commit

Permalink
Upgrade: pdf.js 2.0.363 (#659)
Browse files Browse the repository at this point in the history
- pdf.js 2.x updated the way workers are used. We can no longer prefetch the worker and instead must preload it
- Latest patch also respects `PDFJS.workerSrc` over any internal overrides, which previously could cause issues with RequireJS
- Fix upgrade_pdfjs.sh patch to properly list last pdf.js version
  • Loading branch information
tonyjin authored Feb 15, 2018
1 parent 1a5c04b commit 754faa4
Show file tree
Hide file tree
Showing 197 changed files with 70,995 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const webpackConfig = require('./webpack.karma.config');

// These should be updated to match the Preview version in package.json whenever a file in that third party directory
// is updated. Also, update the matching configuration in constants.js, which is needed for main preview functionality
const DOC_STATIC_ASSETS_VERSION = '1.17.0';
const DOC_STATIC_ASSETS_VERSION = '1.30.0';
const MEDIA_STATIC_ASSETS_VERSION = '1.30.0';
const MODEL3D_STATIC_ASSETS_VERSION = '1.12.0';
const SWF_STATIC_ASSETS_VERSION = '0.112.0';
Expand Down
2 changes: 1 addition & 1 deletion build/upgrade_pdfjs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DOC_STATIC_ASSETS_VERSION=$(./build/current_version.sh)
DOC_STATIC_ASSETS_PATH="src/third-party/doc/$DOC_STATIC_ASSETS_VERSION"

if [ ! -d $DOC_STATIC_ASSETS_PATH ]; then
DOC_LATEST_STATIC_ASSETS=`ls src/third-party/doc | sort -nr | head -1`
DOC_LATEST_STATIC_ASSETS=`ls src/third-party/doc | sort -t "." -k1,1n -k2,2n -k3,3n | tail -1`
echo "Latest version is $DOC_LATEST_STATIC_ASSETS"
`cp -R src/third-party/doc/$DOC_LATEST_STATIC_ASSETS $DOC_STATIC_ASSETS_PATH`
echo "Created build directory for $DOC_STATIC_ASSETS_PATH"
Expand Down
16 changes: 16 additions & 0 deletions src/lib/__tests__/util-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,16 @@ describe('lib/util', () => {
expect(linkEl.rel).to.equal('prefetch');
expect(linkEl.href.indexOf(url) !== -1).to.be.true;
});

it('should return a preload link element when a url is provided and preload is true', () => {
const url = 'foo.js';
const linkEl = util.createPrefetch(url, true);
expect(linkEl instanceof HTMLElement).to.be.true;
expect(linkEl.tagName).to.equal('LINK');
expect(linkEl.rel).to.equal('preload');
expect(linkEl.as).to.equal('script');
expect(linkEl.href.indexOf(url) !== -1).to.be.true;
});
});

describe('createStylesheet()', () => {
Expand Down Expand Up @@ -362,6 +372,12 @@ describe('lib/util', () => {
assert.ok(head.querySelector('link[rel="prefetch"][href="foo"]') instanceof HTMLLinkElement);
assert.ok(head.querySelector('link[rel="prefetch"][href="bar"]') instanceof HTMLLinkElement);
});

it('should insert links with preload if specified', () => {
util.prefetchAssets(['foo'], true);
const head = document.head;
assert.ok(head.querySelector('link[rel="preload"][href="foo"]') instanceof HTMLLinkElement);
})
});

describe('loadStylesheets()', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const PDFJS_HEIGHT_PADDING_PX = 5; // Should match VERTICAL_PADDING in pd

// These should be updated to match the Preview version in package.json whenever a file in that third party directory
// is updated. Also, update the matching configuration in karma.conf.js, which is needed for tests
export const DOC_STATIC_ASSETS_VERSION = '1.17.0';
export const DOC_STATIC_ASSETS_VERSION = '1.30.0';
export const MEDIA_STATIC_ASSETS_VERSION = '1.30.0';
export const MODEL3D_STATIC_ASSETS_VERSION = '1.12.0';
export const SWF_STATIC_ASSETS_VERSION = '0.112.0';
Expand Down
18 changes: 13 additions & 5 deletions src/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,18 @@ export function createScript(url) {
*
* @public
* @param {string} url - Asset urls
* @param {boolean} preload - Whether or not to use preload, default false
* @return {HTMLElement} Prefetch link element
*/
export function createPrefetch(url) {
export function createPrefetch(url, preload = false) {
const link = document.createElement('link');
link.rel = 'prefetch';
link.rel = preload ? 'preload' : 'prefetch';
link.href = url;

if (preload) {
link.as = url.indexOf('.js') !== -1 ? 'script' : 'style';
}

return link;
}

Expand Down Expand Up @@ -433,14 +439,16 @@ export function createAssetUrlCreator(location) {
*
* @public
* @param {Array} urls - Asset urls
* @param {boolean} preload - Use preload instead of prefetch, default false
* @return {void}
*/
export function prefetchAssets(urls) {
export function prefetchAssets(urls, preload = false) {
const { head } = document;
const rel = preload ? 'preload' : 'prefetch';

urls.forEach((url) => {
if (!head.querySelector(`link[rel="prefetch"][href="${url}"]`)) {
head.appendChild(createPrefetch(url));
if (!head.querySelector(`link[rel="${rel}"][href="${url}"]`)) {
head.appendChild(createPrefetch(url, preload));
}
});
}
Expand Down
7 changes: 4 additions & 3 deletions src/lib/viewers/BaseViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,18 +627,19 @@ class BaseViewer extends EventEmitter {
* @protected
* @param {Array} [js] - js assets
* @param {Array} [css] - css assets
* @param {boolean} preload - Use preload instead of prefetch, default false
* @return {void}
*/
prefetchAssets(js, css) {
prefetchAssets(js, css, preload = false) {
// Create an asset path creator function
const { location } = this.options;
const assetUrlCreator = createAssetUrlCreator(location);

// Prefetch the stylesheets needed for this preview
prefetchAssets((css || []).map(assetUrlCreator));
prefetchAssets((css || []).map(assetUrlCreator), preload);

// Prefetch the scripts needed for this preview
prefetchAssets((js || []).map(assetUrlCreator));
prefetchAssets((js || []).map(assetUrlCreator), preload);
}

/**
Expand Down
10 changes: 10 additions & 0 deletions src/lib/viewers/__tests__/BaseViewer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,16 @@ describe('lib/viewers/BaseViewer', () => {
expect(util.createAssetUrlCreator).to.be.calledWith(base.options.location);
expect(util.prefetchAssets).to.be.calledTwice;
});

it('should create an asset URL and preload the relevant stylesheets and scripts if preload is true', () => {
base.options.location = {};

sandbox.stub(util, 'createAssetUrlCreator').returns(() => {});
sandbox.stub(util, 'prefetchAssets');

base.prefetchAssets([], [], true);
expect(util.prefetchAssets).to.be.calledWith(sinon.match.any, true);
});
});

describe('getRepStatus()', () => {
Expand Down
5 changes: 4 additions & 1 deletion src/lib/viewers/doc/DocBaseViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
import { checkPermission, getRepresentation } from '../../file';
import { get, createAssetUrlCreator, getMidpoint, getDistance, getClosestPageToPinch } from '../../util';
import { ICON_PRINT_CHECKMARK } from '../../icons/icons';
import { JS, CSS } from './docAssets';
import { JS, PRELOAD_JS, CSS } from './docAssets';
import { VIEWER_EVENT } from '../../events';

const CURRENT_PAGE_MAP_KEY = 'doc-current-page-map';
Expand Down Expand Up @@ -167,6 +167,7 @@ class DocBaseViewer extends BaseViewer {

if (assets) {
this.prefetchAssets(JS, CSS);
this.prefetchAssets(PRELOAD_JS, [], true);
}

if (preload && !isWatermarked) {
Expand Down Expand Up @@ -610,6 +611,8 @@ class DocBaseViewer extends BaseViewer {
const { file, location } = this.options;
const { size, watermark_info: watermarkInfo } = file;
const assetUrlCreator = createAssetUrlCreator(location);

// Set pdf.js worker, image, and character map locations
PDFJS.workerSrc = assetUrlCreator(`third-party/doc/${DOC_STATIC_ASSETS_VERSION}/pdf.worker.min.js`);
PDFJS.imageResourcesPath = assetUrlCreator(`third-party/doc/${DOC_STATIC_ASSETS_VERSION}/images/`);
PDFJS.cMapUrl = `${location.staticBaseURI}third-party/doc/${DOC_STATIC_ASSETS_VERSION}/cmaps/`;
Expand Down
8 changes: 2 additions & 6 deletions src/lib/viewers/doc/docAssets.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { DOC_STATIC_ASSETS_VERSION } from '../../constants';

const STATIC_URI = `third-party/doc/${DOC_STATIC_ASSETS_VERSION}/`;
export const JS = [
`${STATIC_URI}pdf.min.js`,
`${STATIC_URI}pdf_viewer.min.js`,
`${STATIC_URI}pdf.worker.min.js`,
`${STATIC_URI}exif.min.js`
];
export const JS = [`${STATIC_URI}pdf.min.js`, `${STATIC_URI}pdf_viewer.min.js`, `${STATIC_URI}exif.min.js`];
export const PRELOAD_JS = [`${STATIC_URI}pdf.worker.min.js`];
export const CSS = [`${STATIC_URI}pdf_viewer.min.css`];
Binary file added src/third-party/doc/1.30.0/cmaps/78-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/78ms-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/83pv-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90ms-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90ms-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90msp-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90msp-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90pv-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/90pv-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Add-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Add-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Add-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Add-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-0.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-1.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-2.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-3.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-4.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-5.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-CNS1-6.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-0.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-1.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-2.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-3.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-4.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Adobe-GB1-5.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/B5pc-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/B5pc-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/CNS-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/CNS-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/CNS1-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/CNS1-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/CNS2-H.bcmap
Binary file not shown.
3 changes: 3 additions & 0 deletions src/third-party/doc/1.30.0/cmaps/CNS2-V.bcmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
�RCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSE�CNS2-H
Binary file added src/third-party/doc/1.30.0/cmaps/ETHK-B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/ETHK-B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/ETen-B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/ETen-B5-V.bcmap
Binary file not shown.
3 changes: 3 additions & 0 deletions src/third-party/doc/1.30.0/cmaps/ETenms-B5-H.bcmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
�RCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSE� ETen-B5-H` ^
Binary file added src/third-party/doc/1.30.0/cmaps/ETenms-B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Ext-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Ext-RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Ext-RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Ext-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GB-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GB-EUC-V.bcmap
Binary file not shown.
4 changes: 4 additions & 0 deletions src/third-party/doc/1.30.0/cmaps/GB-H.bcmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
�RCopyright 1990-2009 Adobe Systems Incorporated.
All rights reserved.
See ./LICENSE!!��]aX!!]`�21�> �p �z�$]��"R�d�-U�7�*�4�%�+ �Z �{�/�%�<�9K�b�1]�.�"� �`]�,�"]�
�"]�h�"]�F�"]�$�"]��"]�`�"]�>�"]��"]�z�"]�X�"]�6�"]��"]�r�"]�P�"]�.�"]� �"]�j�"]�H�"]�&�"]��"]�b�"]�@�"]��"]�|�"]�Z�"]�8�"]��"]�t�"]�R�"]�0�"]��"]�l�"]�J�"]�(�"]��"]�d�"]�B�"]� �"X�~�']�W�"]�5�"]��"]�q�"]�O�"]�-�"]� �"]�i�"]�G�"]�%�"]��"]�a�"]�?�"]��"]�{�"]�Y�"]�7�"]��"]�s�"]�Q�"]�/�"]��"]�k�"]�I�"]�'�"]��"]�c�"]�A�"]��"]�}�"]�[�"]�9
Expand Down
Binary file added src/third-party/doc/1.30.0/cmaps/GB-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBK-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBK-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBK2K-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBK2K-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBKp-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBKp-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBT-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBT-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBT-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBT-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBTpc-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBpc-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/GBpc-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKdla-B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKdla-B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKdlb-B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKdlb-B5-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKgccs-B5-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKm314-B5-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKm471-B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKscs-B5-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/HKscs-B5-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Hankaku.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Hiragana.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSC-EUC-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSC-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSC-H.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSC-Johab-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSC-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSCms-UHC-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/KSCpc-EUC-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Katakana.bcmap
Binary file not shown.
36 changes: 36 additions & 0 deletions src/third-party/doc/1.30.0/cmaps/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
%%Copyright: -----------------------------------------------------------
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
%%Copyright: All rights reserved.
%%Copyright:
%%Copyright: Redistribution and use in source and binary forms, with or
%%Copyright: without modification, are permitted provided that the
%%Copyright: following conditions are met:
%%Copyright:
%%Copyright: Redistributions of source code must retain the above
%%Copyright: copyright notice, this list of conditions and the following
%%Copyright: disclaimer.
%%Copyright:
%%Copyright: Redistributions in binary form must reproduce the above
%%Copyright: copyright notice, this list of conditions and the following
%%Copyright: disclaimer in the documentation and/or other materials
%%Copyright: provided with the distribution.
%%Copyright:
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
%%Copyright: of its contributors may be used to endorse or promote
%%Copyright: products derived from this software without specific prior
%%Copyright: written permission.
%%Copyright:
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%Copyright: -----------------------------------------------------------
Binary file added src/third-party/doc/1.30.0/cmaps/NWP-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/NWP-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/RKSJ-H.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/RKSJ-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/Roman.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniCNS-UCS2-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniCNS-UTF8-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniGB-UCS2-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniGB-UTF16-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniGB-UTF32-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniGB-UTF8-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniJIS-UCS2-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniJIS-UTF8-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniKS-UCS2-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniKS-UTF16-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniKS-UTF32-V.bcmap
Binary file not shown.
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/UniKS-UTF8-V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/V.bcmap
Binary file not shown.
Binary file added src/third-party/doc/1.30.0/cmaps/WP-Symbol.bcmap
Binary file not shown.
Loading

0 comments on commit 754faa4

Please sign in to comment.