Add LibreJS license tag

ci/pipeline-publish
Hubert Chathi 2021-03-31 16:09:36 -04:00
parent 09384b4d45
commit f16377822f
4 changed files with 12 additions and 4 deletions

View File

@ -191,6 +191,9 @@ wasm: $(WASM_TARGET)
$(WASM_TARGET): $(WASM_OBJECTS)
$(EMAR) rcs $@ $^
javascript/olm_prefix.js: javascript/olm_prefix.js.in Makefile
sed s/@VERSION@/$(VERSION)/ javascript/olm_prefix.js.in > $@
# Note that the output file we give to emcc determines the name of the
# wasm file baked into the js, hence messing around outputting to olm.js
# and then renaming it.

View File

@ -1,4 +0,0 @@
var Olm = (function() {
var olm_exports = {};
var onInitSuccess;
var onInitFail;

View File

@ -0,0 +1,7 @@
// @license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt Apache-2.0
// @source: https://gitlab.matrix.org/matrix-org/olm/-/tree/@VERSION@
var Olm = (function() {
var olm_exports = {};
var onInitSuccess;
var onInitFail;

View File

@ -34,3 +34,5 @@ if (typeof module === 'object') {
// level wrapper class.
module.exports = Olm;
}
// @license-end