@missing-elements/h5p-offline-player 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE.md +83 -0
- package/README.md +27 -8
- package/dist/VERSION +1 -1
- package/dist/frame-assets/LICENSE.txt +674 -0
- package/dist/frame-assets/MANIFEST.json +1 -1
- package/dist/frame-assets/NOTICE.txt +30 -0
- package/dist/frame-assets/main.bundle.js.LICENSE.txt +1 -0
- package/dist/h5p-player.js +4 -1773
- package/dist/h5p-sw-mount.js +9 -75
- package/dist/h5p-sw.js +9 -75
- package/licenses/GPL-3.0.txt +674 -0
- package/package.json +27 -24
- package/types/node/tsconfig.node.tsbuildinfo +1 -1
- package/types/node/vite.plugins.d.ts +6 -0
- package/types/shared/chunk-store.d.ts +35 -4
- package/types/shared/constants.d.ts +19 -1
- package/types/shared/source-reader.d.ts +21 -0
- package/types/shared/source.d.ts +10 -20
- package/types/shared/storage.d.ts +18 -0
- package/types/sw/frame-boot.d.ts +32 -0
- package/types/sw/package-reader.d.ts +6 -2
- package/types/sw/watermark-wait.d.ts +21 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
H5P frame assets -- third-party notice
|
|
2
|
+
|
|
3
|
+
These files are the H5P runtime that <h5p-player> loads inside its frame. They were copied
|
|
4
|
+
unmodified from h5p-standalone 3.8.2 (https://github.com/tunapanda/h5p-standalone,
|
|
5
|
+
tag v3.8.2) by @missing-elements/h5p-offline-player 0.1.2. They are NOT covered by
|
|
6
|
+
that package's MIT licence. Keep this file and LICENSE.txt beside them when you copy or serve
|
|
7
|
+
the directory.
|
|
8
|
+
|
|
9
|
+
frame.bundle.js
|
|
10
|
+
- H5P core: h5p.js, h5p-event-dispatcher.js, h5p-x-api.js, h5p-x-api-event.js,
|
|
11
|
+
h5p-content-type.js, h5p-confirmation-dialog.js, request-queue.js, h5p-action-bar.js,
|
|
12
|
+
h5p-tooltip.js, from https://github.com/h5p/h5p-php-library (vendor/h5p/js/ in
|
|
13
|
+
h5p-standalone). GNU General Public License v3.0 -- LICENSE.txt in this directory.
|
|
14
|
+
- jQuery 3.5.1. MIT, Copyright JS Foundation and other contributors, https://jquery.org/license
|
|
15
|
+
- h5p-standalone's own frame code. MIT, Copyright (c) 2015 Tunapanda.
|
|
16
|
+
|
|
17
|
+
styles/, fonts/h5p-core-30.woff2, fonts/h5p-hub-publish.*, fonts/h5p-theme.woff2, images/
|
|
18
|
+
- H5P core, same origin. GNU General Public License v3.0 -- LICENSE.txt.
|
|
19
|
+
|
|
20
|
+
fonts/inter/ Inter, SIL Open Font License 1.1 -- fonts/inter/LICENSE.txt
|
|
21
|
+
fonts/open-sans/ Open Sans, SIL Open Font License 1.1 -- fonts/open-sans/OFL.txt
|
|
22
|
+
|
|
23
|
+
main.bundle.js
|
|
24
|
+
- h5p-standalone. MIT, Copyright (c) 2015 Tunapanda. Includes regenerator-runtime (MIT),
|
|
25
|
+
see main.bundle.js.LICENSE.txt.
|
|
26
|
+
|
|
27
|
+
Corresponding source for the GPL parts as built:
|
|
28
|
+
https://github.com/tunapanda/h5p-standalone/tree/v3.8.2 (src/ and vendor/h5p/).
|
|
29
|
+
h5p-standalone does not record which h5p-php-library revision vendor/h5p/ was taken from
|
|
30
|
+
(https://github.com/tunapanda/h5p-standalone/issues/188).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|