Visual brand refresh: replaced the desktop client + Manager web logos with the new glossy gradient H glyph. Desktop (cc-haha): - src-tauri/icons/*: regenerated via `tauri icon` from new-icon.png (center-cropped 1024 square). Updates icon.ico/icns/png + 8 Windows Square*Logo sizes + iOS + Android mipmaps. - public/app-icon.png + app-icon.svg: replaced. SVG is now a wrapper around the embedded PNG so existing <img src="…app-icon.svg"> refs keep working without recoloring tooling. - Version bumped to 0.1.7 across tauri.conf.json, package.json, Cargo.toml. Manager web (heicode/web/default): - public/logo.png: 256x256 of the new glyph. - public/favicon.ico: multi-size ico (16/32/48/64/128/256). - public/heicode-logo.svg: same SVG-wraps-PNG trick as desktop. Backend (heicode/controller/desktop_download.go): - Already redeployed earlier today — the Manager web "Heicode 桌面客户端" page now sources its download URLs from the Azure Blob updater manifest instead of VM-local files. This is the fix for "still downloading Heicode_0.1.0_windows_x64_msi.msi"; the page will reflect 0.1.7 the moment the manifest publishes below. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
536 B
TOML
24 lines
536 B
TOML
[package]
|
|
name = "heicode-desktop"
|
|
version = "0.1.7"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "heicode_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-single-instance = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1.0.102"
|
|
portable-pty = "0.9.0"
|