chore: bump version to 2.0.2

This commit is contained in:
lbl
2026-08-23 11:37:34 +08:00
parent 619a5bcf18
commit 298c3965e2
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.1");
const currentVersion = computed(() => app.version || "2.0.2");
const progress = computed(() => {
if (!contentLength.value) return 0;
return Math.min(100, Math.round((downloaded.value / contentLength.value) * 100));