From 355967dc29f4fbe3abe48a7f06ccf4509c8fb533 Mon Sep 17 00:00:00 2001 From: pepa65 Date: Mon, 23 Nov 2015 16:38:35 +0700 Subject: [PATCH 1/3] Correct git repo url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2689ce2..aefc15c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can find additional information, some usage guides, and live examples at [th ViewerJS uses [`cmake`](http://cmake.org/). Just follow these steps: ```bash -git clone git@github.com:kogmbh/ViewerJS.git +git clone http://github.com/kogmbh/ViewerJS.git mkdir build cd build cmake ../ViewerJS From 33aae0d14b704f08224dffabf510a5e571bbc4a1 Mon Sep 17 00:00:00 2001 From: "Guo, Xing Hua" Date: Tue, 29 Aug 2017 11:56:59 +0800 Subject: [PATCH 2/3] Decode the title so that it can display CJK characters correctly --- viewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer.js b/viewer.js index 6f0e475..dbecc87 100644 --- a/viewer.js +++ b/viewer.js @@ -274,7 +274,7 @@ function Viewer(viewerPlugin, parameters) { document.title = parameters.title; var documentName = document.getElementById('documentName'); documentName.innerHTML = ""; - documentName.appendChild(documentName.ownerDocument.createTextNode(parameters.title)); + documentName.appendChild(documentName.ownerDocument.createTextNode(decodeURIComponent(parameters.title))); viewerPlugin.onLoad = function () { document.getElementById('pluginVersion').innerHTML = viewerPlugin.getPluginVersion(); From 8aa33a9c4f390c8da5a4fb8178a2e915d511fde1 Mon Sep 17 00:00:00 2001 From: Tobias Hintze Date: Tue, 10 Mar 2020 00:51:22 +0100 Subject: [PATCH 3/3] fix contact information --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aefc15c..02e6062 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # ViewerJS -ViewerJS combines a number of excellent open source tools that are built on HTML and javascript. ViewerJS was funded by [NLnet foundation](https://nlnet.nl) and developed by [KO GmbH](http://kogmbh.com). +ViewerJS combines a number of excellent open source tools that are built on HTML and javascript. ViewerJS was funded by [NLnet foundation](https://nlnet.nl) and developed by KO GmbH. The heavy lifting in ViewerJS is done by these awesome projects: ### WebODF -WebODF is a JavaScript library created by [KO GmbH](http://kogmbh.com). It was started by Jos van den Oever at KO and is now developed by a growing team including external collaborators. It makes it easy to add Open Document Format (ODF) support to your website and to your mobile or desktop applications. It uses HTML and CSS to display ODF documents. +WebODF is a JavaScript library created by KO GmbH. It was started by Jos van den Oever at KO and is now developed by a growing team including external collaborators. It makes it easy to add Open Document Format (ODF) support to your website and to your mobile or desktop applications. It uses HTML and CSS to display ODF documents. ### PDF.js @@ -40,4 +40,4 @@ ViewerJS is a Free Software project. All code is available under the AGPL. If you are interested in using ViewerJS in your commercial product (and do not want to disclose your sources / obey AGPL), -contact [KO GmbH](http://kogmbh.com) for a commercial license. +contact [license@viewerjs.org](mailto:license@viewerjs.org) for a commercial license.