chore(release): bump version to 2.0.1

This commit is contained in:
lbl
2026-08-22 22:43:31 +08:00
parent af4b5d9657
commit 70e584b37b
11 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const message = ref("");
const downloaded = ref(0);
const contentLength = ref(0);
const currentVersion = computed(() => app.version || "2.0.0");
const currentVersion = computed(() => app.version || "2.0.1");
const progress = computed(() => {
if (!contentLength.value) return 0;
return Math.min(100, Math.round((downloaded.value / contentLength.value) * 100));