From adf3ade489b13438c1621dc88be2b65b106424b7 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Wed, 27 Mar 2024 11:50:31 -0500 Subject: [PATCH] Summary (required) --- index.html | 1 + loader.js | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 47ca433..fcaf20d 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@
+ diff --git a/loader.js b/loader.js index f413cfa..ba6fe72 100644 --- a/loader.js +++ b/loader.js @@ -63,6 +63,13 @@ function init_honoka(file, android, newDomain) { let finalized = await zip.generateAsync({type: "uint8array"}); update_status("Finalizing"); const downloadUrl = URL.createObjectURL(new Blob([finalized], {type: type})); + const b = document.createElement("a"); + b.href = URL.createObjectURL(new Blob([new_server_info], {type: "application/json"})) + b.innerText = "Download patched server_info.json"; + b.download = "server_info.json"; + document.body.appendChild(b); + + const a = document.createElement("a"); a.href = downloadUrl; a.innerText = "Download"; @@ -71,7 +78,7 @@ function init_honoka(file, android, newDomain) { update_status("Done!"); if (android) { const p = document.createElement("p"); - p.innerHTML = "Package is not signed. It will not install. Sign it with the command `apksigner sign -ks sifkey.keystore lovelive.apk`. Make sure to download this keystore."; + p.innerHTML = "Package is not signed. Using uber-apk-signer, sign it with the command `java -jar uber-apk-signer-