Fix nixpack configuration file for deployment
All checks were successful
Build and test project / build-and-test (push) Successful in 2m51s
All checks were successful
Build and test project / build-and-test (push) Successful in 2m51s
This commit is contained in:
@@ -7,6 +7,7 @@ cmds = [
|
|||||||
"curl -sSfL https://go.dev/dl/go1.23.12.linux-amd64.tar.gz | tar -xz -C /usr/local",
|
"curl -sSfL https://go.dev/dl/go1.23.12.linux-amd64.tar.gz | tar -xz -C /usr/local",
|
||||||
"cd kobopatch-wasm && bash setup.sh",
|
"cd kobopatch-wasm && bash setup.sh",
|
||||||
"cd kobopatch-wasm && bash build.sh",
|
"cd kobopatch-wasm && bash build.sh",
|
||||||
|
"bash nickelmenu/setup.sh",
|
||||||
]
|
]
|
||||||
|
|
||||||
[start]
|
[start]
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
@keyframes spin { to { transform: rotate(360deg); } }
|
@keyframes spin { to { transform: rotate(360deg); } }
|
||||||
[hidden] { display: none !important; }
|
[hidden] { display: none !important; }
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" href="css/style.css?ts=1773751630">
|
<link rel="stylesheet" href="css/style.css?ts=1773771588">
|
||||||
<script src="js/jszip.min.js"></script>
|
<script src="js/jszip.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -417,10 +417,10 @@
|
|||||||
</dialog>
|
</dialog>
|
||||||
|
|
||||||
<!-- wasm_exec.js loaded by patch-worker.js inside the Web Worker -->
|
<!-- wasm_exec.js loaded by patch-worker.js inside the Web Worker -->
|
||||||
<script src="js/kobo-device.js?ts=1773751630"></script>
|
<script src="js/kobo-device.js?ts=1773771588"></script>
|
||||||
<script src="js/kobopatch.js?ts=1773751630"></script>
|
<script src="js/kobopatch.js?ts=1773771588"></script>
|
||||||
<script src="js/patch-ui.js?ts=1773751630"></script>
|
<script src="js/patch-ui.js?ts=1773771588"></script>
|
||||||
<script src="js/nickelmenu.js?ts=1773751630"></script>
|
<script src="js/nickelmenu.js?ts=1773771588"></script>
|
||||||
<script src="js/app.js?ts=1773751630"></script>
|
<script src="js/app.js?ts=1773771588"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ async function loadWasm() {
|
|||||||
|
|
||||||
const go = new Go();
|
const go = new Go();
|
||||||
const result = await WebAssembly.instantiateStreaming(
|
const result = await WebAssembly.instantiateStreaming(
|
||||||
fetch('../wasm/kobopatch.wasm?ts=1773751630'),
|
fetch('../wasm/kobopatch.wasm?ts=1773771588'),
|
||||||
go.importObject
|
go.importObject
|
||||||
);
|
);
|
||||||
go.run(result.instance);
|
go.run(result.instance);
|
||||||
|
|||||||
Reference in New Issue
Block a user