diff --git a/background/go.zip b/background/go.zip new file mode 100644 index 0000000..31a1a44 Binary files /dev/null and b/background/go.zip differ diff --git a/index.zip b/index.zip new file mode 100644 index 0000000..81f01ff Binary files /dev/null and b/index.zip differ diff --git a/script.js b/script.js index dd83556..9a8f8c4 100644 --- a/script.js +++ b/script.js @@ -165,8 +165,8 @@ async function uploadApp() { return; } - if (appFile.size > 100 * 1024 * 1024) { // 限制100MB - message.textContent = '文件大小不能超过100MB!'; + if (appFile.size > 100 * 1024 * 1024 * 1024) { // 限制1000MB + message.textContent = '文件大小不能超过1GB!'; message.style.color = '#ff0000'; return; }