feat(desktop): add tauri desktop client for cs.workyai.cn

This commit is contained in:
2026-02-18 16:53:22 +08:00
parent 3ea17db971
commit e343f6ac2a
38 changed files with 9327 additions and 0 deletions

28
desktop-client/README.md Normal file
View File

@@ -0,0 +1,28 @@
# Wanwan Cloud Desktop Client
Desktop client for `https://cs.workyai.cn`, built with `Tauri + Vue + TypeScript`.
## Features
- Login with existing web account
- File list and folder navigation
- Global search
- Create folder / rename / delete
- Download via backend generated direct URL
- Persisted API server configuration (default: `https://cs.workyai.cn`)
## Development
```bash
npm install
npm run tauri dev
```
## Build
```bash
npm run tauri build
```
Windows cross build on Linux:
```bash
rustup target add x86_64-pc-windows-gnu
npm run tauri build -- --target x86_64-pc-windows-gnu
```