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
@@ -1,6 +1,6 @@
[package]
name = "vnt-web"
version = "2.0.1"
version = "2.0.2"
edition = "2024"
[dependencies]
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "vnt-web-ui",
"private": true,
"version": "2.0.1",
"version": "2.0.2",
"type": "module",
"scripts": {
"dev": "vite",
+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));