1
0

Move files around

This commit is contained in:
2026-03-16 22:44:31 +01:00
parent d8410d6f14
commit 25834ed5e3
11 changed files with 14 additions and 14 deletions

View File

@@ -7,7 +7,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
<link rel="stylesheet" href="style.css?ts=1773690621">
<link rel="stylesheet" href="css/style.css?ts=1773690621">
<script src="https://cdn.jsdelivr.net/npm/jszip@3/dist/jszip.min.js"></script>
</head>
<body>
@@ -246,9 +246,9 @@
</dialog>
<!-- wasm_exec.js loaded by patch-worker.js inside the Web Worker -->
<script src="kobo-device.js?ts=1773690621"></script>
<script src="kobopatch.js?ts=1773690621"></script>
<script src="patch-ui.js?ts=1773690621"></script>
<script src="app.js?ts=1773690621"></script>
<script src="js/kobo-device.js?ts=1773690621"></script>
<script src="js/kobopatch.js?ts=1773690621"></script>
<script src="js/patch-ui.js?ts=1773690621"></script>
<script src="js/app.js?ts=1773690621"></script>
</body>
</html>

View File

@@ -17,7 +17,7 @@ class KobopatchRunner {
*/
patchFirmware(configYAML, firmwareZip, patchFiles, onProgress) {
return new Promise((resolve, reject) => {
const worker = new Worker('patch-worker.js');
const worker = new Worker('js/patch-worker.js');
this._worker = worker;
worker.onmessage = (e) => {

View File

@@ -10,7 +10,7 @@ async function loadWasm() {
const go = new Go();
const result = await WebAssembly.instantiateStreaming(
fetch('kobopatch.wasm?ts=1773690621'),
fetch('../wasm/kobopatch.wasm?ts=1773690621'),
go.importObject
);
go.run(result.instance);