From cf1935be1d1f0060283798ffbdf7d5a6aad67888 Mon Sep 17 00:00:00 2001 From: 237899745 <237899745@users.noreply.git.workyai.cn> Date: Sat, 4 Apr 2026 00:38:15 +0800 Subject: [PATCH] chore: bump version to 0.1.29 and release Co-Authored-By: Claude Opus 4.6 (1M context) --- desktop-client/package-lock.json | 8 ++------ desktop-client/package.json | 2 +- desktop-client/src-tauri/Cargo.lock | 2 +- desktop-client/src-tauri/Cargo.toml | 2 +- desktop-client/src-tauri/tauri.conf.json | 2 +- desktop-client/src/App.vue | 4 ++-- 6 files changed, 8 insertions(+), 12 deletions(-) diff --git a/desktop-client/package-lock.json b/desktop-client/package-lock.json index ee3f6d1..124c357 100644 --- a/desktop-client/package-lock.json +++ b/desktop-client/package-lock.json @@ -1,12 +1,12 @@ { "name": "desktop-client", - "version": "0.1.2", + "version": "0.1.29", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "desktop-client", - "version": "0.1.2", + "version": "0.1.29", "dependencies": { "@tauri-apps/api": "^2", "@tauri-apps/plugin-dialog": "^2.6.0", @@ -1505,7 +1505,6 @@ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "dev": true, "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -1618,7 +1617,6 @@ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", "devOptional": true, "license": "Apache-2.0", - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -1633,7 +1631,6 @@ "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.4", @@ -1715,7 +1712,6 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.28.tgz", "integrity": "sha512-BRdrNfeoccSoIZeIhyPBfvWSLFP4q8J3u8Ju8Ug5vu3LdD+yTM13Sg4sKtljxozbnuMu1NB1X5HBHRYUzFocKg==", "license": "MIT", - "peer": true, "dependencies": { "@vue/compiler-dom": "3.5.28", "@vue/compiler-sfc": "3.5.28", diff --git a/desktop-client/package.json b/desktop-client/package.json index a53d8e7..7b70f03 100644 --- a/desktop-client/package.json +++ b/desktop-client/package.json @@ -1,7 +1,7 @@ { "name": "desktop-client", "private": true, - "version": "0.1.28", + "version": "0.1.29", "type": "module", "scripts": { "dev": "vite", diff --git a/desktop-client/src-tauri/Cargo.lock b/desktop-client/src-tauri/Cargo.lock index d8f5352..ea8f0c9 100644 --- a/desktop-client/src-tauri/Cargo.lock +++ b/desktop-client/src-tauri/Cargo.lock @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "desktop-client" -version = "0.1.28" +version = "0.1.29" dependencies = [ "reqwest 0.12.28", "rusqlite", diff --git a/desktop-client/src-tauri/Cargo.toml b/desktop-client/src-tauri/Cargo.toml index 1d78442..714f014 100644 --- a/desktop-client/src-tauri/Cargo.toml +++ b/desktop-client/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "desktop-client" -version = "0.1.28" +version = "0.1.29" description = "A Tauri App" authors = ["you"] edition = "2021" diff --git a/desktop-client/src-tauri/tauri.conf.json b/desktop-client/src-tauri/tauri.conf.json index 50c2c9e..f4051dd 100644 --- a/desktop-client/src-tauri/tauri.conf.json +++ b/desktop-client/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "玩玩云", - "version": "0.1.28", + "version": "0.1.29", "identifier": "cn.workyai.wanwancloud.desktop", "build": { "beforeDevCommand": "npm run dev", diff --git a/desktop-client/src/App.vue b/desktop-client/src/App.vue index 20e0d2f..91a50b1 100644 --- a/desktop-client/src/App.vue +++ b/desktop-client/src/App.vue @@ -90,7 +90,7 @@ type LocalSyncFileItem = { }; type TransferTaskKind = "upload" | "download"; -type TransferTaskStatus = "queued" | "uploading" | "downloading" | "done" | "failed"; +type TransferTaskStatus = "queued" | "uploading" | "downloading" | "processing" | "done" | "failed"; type TransferTask = { id: string; kind: TransferTaskKind; @@ -166,7 +166,7 @@ const syncState = reactive({ nextRunAt: "", }); const updateState = reactive({ - currentVersion: "0.1.28", + currentVersion: "0.1.29", latestVersion: "", available: false, mandatory: false,