diff --git a/backend/server.js b/backend/server.js index d8a7051..5e7f767 100644 --- a/backend/server.js +++ b/backend/server.js @@ -112,7 +112,7 @@ const DOWNLOAD_SIGNED_URL_EXPIRES_SECONDS = Math.max( 10, Math.min(3600, Number(process.env.DOWNLOAD_SIGNED_URL_EXPIRES_SECONDS || 30)) ); -const DEFAULT_DESKTOP_VERSION = process.env.DESKTOP_LATEST_VERSION || '0.1.7'; +const DEFAULT_DESKTOP_VERSION = process.env.DESKTOP_LATEST_VERSION || '0.1.8'; const DEFAULT_DESKTOP_INSTALLER_URL = process.env.DESKTOP_INSTALLER_URL || ''; const DEFAULT_DESKTOP_RELEASE_NOTES = process.env.DESKTOP_RELEASE_NOTES || ''; const DESKTOP_INSTALLERS_DIR = path.resolve(__dirname, '../frontend/downloads'); diff --git a/desktop-client/package.json b/desktop-client/package.json index ed59627..de2f252 100644 --- a/desktop-client/package.json +++ b/desktop-client/package.json @@ -1,7 +1,7 @@ { "name": "desktop-client", "private": true, - "version": "0.1.7", + "version": "0.1.8", "type": "module", "scripts": { "dev": "vite", diff --git a/desktop-client/src-tauri/Cargo.lock b/desktop-client/src-tauri/Cargo.lock index e123868..7d2ff6a 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.7" +version = "0.1.8" dependencies = [ "reqwest 0.12.28", "rusqlite", diff --git a/desktop-client/src-tauri/Cargo.toml b/desktop-client/src-tauri/Cargo.toml index 219fd61..acbaa79 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.7" +version = "0.1.8" 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 5f41dd6..7316142 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": "wanwan-cloud-desktop", - "version": "0.1.7", + "version": "0.1.8", "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 d4300b7..0e49133 100644 --- a/desktop-client/src/App.vue +++ b/desktop-client/src/App.vue @@ -153,7 +153,7 @@ const syncState = reactive({ nextRunAt: "", }); const updateState = reactive({ - currentVersion: "0.1.7", + currentVersion: "0.1.8", latestVersion: "", available: false, mandatory: false, @@ -2873,10 +2873,10 @@ onBeforeUnmount(() => { 删除后外链将立即失效。

- +
@@ -2889,10 +2889,10 @@ onBeforeUnmount(() => { 删除后将无法恢复。

- +
@@ -2902,10 +2902,10 @@ onBeforeUnmount(() => {

{{ operationConfirmDialog.title || "确认操作" }}

{{ operationConfirmDialog.message || "确认继续执行该操作吗?" }}

- +
@@ -2918,10 +2918,10 @@ onBeforeUnmount(() => { 升级完成后将自动重启客户端。

- +
@@ -3553,10 +3553,14 @@ select:focus { line-height: 1.35; width: 100%; overflow: hidden; + white-space: normal; + overflow-wrap: anywhere; + word-break: break-word; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 34px; + max-height: 34px; } .inline-rename-input { @@ -4088,7 +4092,7 @@ select:focus { .confirm-actions { display: flex; - justify-content: flex-end; + justify-content: flex-start; gap: 8px; }