shithub: libmujs

Download patch

ref: 50281c9cee10c8068649f446e896004ff56f6e04
parent: d2c8e710b95454483c17efe9b2a03dcd0ee664b1
author: Tor Andersson <[email protected]>
date: Fri May 12 08:01:09 EDT 2017

Update docs.

--- a/docs/about.html
+++ b/docs/about.html
@@ -18,7 +18,7 @@
 
 <p>
 The primary meeting place for the MuJS community is the
-<a href="http://webchat.freenode.net/?channels=ghostscript">#ghostscript</a>
+<a href="http://webchat.freenode.net/?channels=mupdf">#mupdf</a>
 IRC channel on freenode.
 
 <h2>Why choose MuJS?</h2>
@@ -59,8 +59,8 @@
 
 <p>
 Adding MuJS to an application does not bloat it.
-The source contains around 12'000 lines of C.
-Under Linux, the compiled library takes 180kB if optimized for size,
+The source contains around 15'000 lines of C.
+Under 64-bit Linux, the compiled library takes 180kB if optimized for size,
 and 260kB if optimized for speed.
 
 Compare this with V8, SpiderMonkey or JavaScriptCore,
@@ -74,11 +74,10 @@
 It is a bytecode interpreter with a very fast mechanism to call-out to C.
 The default build is sandboxed with very restricted access to resources.
 
-<h3>Free software (commercial licensing available)</h3>
+<h3>Free software</h3>
 
 <p>
-MuJS is free open source software distributed under the Affero GPL.
-Commercial licenses for use with proprietary software are also available.
-Contact [email protected] for more details about licensing.
+MuJS is free open source software distributed under the
+<a href="https://opensource.org/licenses/ISC">ISC license</a>.
 
 </body>
--- a/docs/examples.html
+++ b/docs/examples.html
@@ -53,7 +53,7 @@
 <h2>Configuration file</h2>
 
 <pre>
-js_dofile(J, "config.lua")
+js_dofile(J, "config.js")
 
 js_getglobal(J, "foo");
 foo = js_tonumber(J, -1);