Update example build

This commit is contained in:
Insality 2024-10-17 02:13:32 +03:00
parent 2ea635fc56
commit c787ed860e
9 changed files with 11 additions and 10330 deletions

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"content":[{"name":"game.projectc","size":4401,"pieces":[{"name":"game0.projectc","offset":0}]},{"name":"game.arci","size":11968,"pieces":[{"name":"game0.arci","offset":0}]},{"name":"game.arcd","size":3549174,"pieces":[{"name":"game0.arcd","offset":0},{"name":"game1.arcd","offset":2097152}]},{"name":"game.dmanifest","size":13396,"pieces":[{"name":"game0.dmanifest","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game0.public.der","offset":0}]}],"total_size":3579101} {"content":[{"name":"game.projectc","size":4491,"pieces":[{"name":"game0.projectc","offset":0}]},{"name":"game.arci","size":11968,"pieces":[{"name":"game0.arci","offset":0}]},{"name":"game.arcd","size":3549174,"pieces":[{"name":"game0.arcd","offset":0},{"name":"game1.arcd","offset":2097152}]},{"name":"game.dmanifest","size":13396,"pieces":[{"name":"game0.dmanifest","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game0.public.der","offset":0}]}],"total_size":3579191}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +1,14 @@
[project] [project]
title = Druid title = druid
version = 1.0.0 version = 1.0.0
write_log = 0 write_log = 0
compress_archive = 1 compress_archive = 1
publisher = Insality publisher = Insality
developer = Maksim Tuprikov developer = Maksim Tuprikov
custom_resources = /example/locales custom_resources = /example/locales
title_as_file_name = Druid commit_sha = 2ea635fc563980bafb1b50025db6c6ef1da7aef4
build_date = 2024-10-16T23:12:59Z
title_as_file_name = druid
[display] [display]
width = 1920 width = 1920
@ -128,7 +130,7 @@ default_language = en
localizations = en localizations = en
[android] [android]
version_code = 1 version_code = 809
minimum_sdk_version = 19 minimum_sdk_version = 19
target_sdk_version = 34 target_sdk_version = 34
package = com.insality.druid package = com.insality.druid

View File

@ -193,7 +193,7 @@ var FileLoader = {
var EngineLoader = { var EngineLoader = {
wasm_size: 2374239, wasm_size: 2374239,
wasmjs_size: 340441, wasmjs_size: 340441,
asmjs_size: 5039346, asmjs_size: 4000000,
wasm_instantiate_progress: 0, wasm_instantiate_progress: 0,
stream_wasm: "false" === "true", stream_wasm: "false" === "true",
@ -1001,7 +1001,7 @@ Module["locateFile"] = function(path, scriptDirectory)
// dmengine*.wasm is hardcoded in the built JS loader for WASM, // dmengine*.wasm is hardcoded in the built JS loader for WASM,
// we need to replace it here with the correct project name. // we need to replace it here with the correct project name.
if (path == "dmengine.wasm" || path == "dmengine_release.wasm" || path == "dmengine_headless.wasm") { if (path == "dmengine.wasm" || path == "dmengine_release.wasm" || path == "dmengine_headless.wasm") {
path = "Druid.wasm"; path = "druid.wasm";
} }
return scriptDirectory + path; return scriptDirectory + path;
}; };

View File

@ -7,7 +7,7 @@
<meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags --> <!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Druid 1.0.0</title> <title>druid 1.0.0</title>
<style type='text/css'> <style type='text/css'>
/* Disable user selection to avoid strange bug in Chrome on Windows: /* Disable user selection to avoid strange bug in Chrome on Windows:
* Selecting a text outside the canvas, then clicking+draging would * Selecting a text outside the canvas, then clicking+draging would
@ -150,7 +150,7 @@
runningFromFileWarning.style.display = "block"; runningFromFileWarning.style.display = "block";
} }
else { else {
EngineLoader.load("canvas", "Druid"); EngineLoader.load("canvas", "druid");
runningFromFileWarning.parentNode.removeChild(runningFromFileWarning); runningFromFileWarning.parentNode.removeChild(runningFromFileWarning);
} }
</script> </script>

View File

@ -12,7 +12,7 @@ dynamic_orientation = 1
high_dpi = 1 high_dpi = 1
[project] [project]
title = Druid title = druid
version = 1.0.0 version = 1.0.0
publisher = Insality publisher = Insality
developer = Maksim Tuprikov developer = Maksim Tuprikov