From 07ac2989966d20d7db3284db2bed72e143a1a6b1 Mon Sep 17 00:00:00 2001 From: John Factotum <50942278+johnfactotum@users.noreply.github.com> Date: Mon, 9 Oct 2023 00:10:49 +0800 Subject: [PATCH] Add license info for PDF.js --- README.md | 1 + src/app.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 2bb607cf..60013b0b 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ The following JavaScript libraries are bundled in this software: * [foliate-js](https://github.com/johnfactotum/foliate-js), which is MIT licensed. * [zip.js](https://github.com/gildas-lormeau/zip.js), which is licensed under the BSD-3-Clause license. * [fflate](https://github.com/101arrowz/fflate), which is MIT licensed. +* [PDF.js](https://github.com/mozilla/pdf.js), which is licensed under Apache License 2.0. --- diff --git a/src/app.js b/src/app.js index 18512f62..8b65fa43 100644 --- a/src/app.js +++ b/src/app.js @@ -352,6 +352,9 @@ export const Application = GObject.registerClass({ win.add_legal_section('fflate', 'Copyright © 2020 Arjun Barrett', Gtk.License.MIT_X11, null) + win.add_legal_section('PDF.js', + '©Mozilla and individual contributors', + Gtk.License.APACHE_2_0, null) win.present() } })