- First-run: show Start Fresh / Import chooser only when single auto-created identity with no profile (not on every boot without a display name). - Identity switch: shut down old node's endpoint before starting new one. Fixes lockup after multiple switches (zombie background tasks). - File picker: native Browse buttons on export (folder) and import (ZIP file) via tauri-plugin-dialog. - Export path: resolve relative paths against home dir (was using process cwd). - Lightbox close: only close on overlay/image click, not inner form content. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
661 B
TOML
28 lines
661 B
TOML
[package]
|
|
name = "itsgoin-desktop"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "itsgoin_desktop"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
itsgoin-core = { path = "../core" }
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
hex = "0.4"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1"
|
|
base64 = "0.22"
|
|
dirs = "5"
|
|
open = "5"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-dialog = "2"
|
|
notify-rust = "4"
|