Major refactor: sidecar is no longer bundled in the installer. Instead,
it's downloaded on first launch with a setup screen offering CPU vs CUDA
choice. This solves the 2GB+ installer size limit and decouples app/sidecar.
Backend:
- New commands: check_sidecar, download_sidecar, check_sidecar_update
- Streaming download with progress events via reqwest
- Added reqwest + futures-util dependencies
- Removed sidecar.zip from bundle resources
- Restored NSIS target (no longer size-constrained)
CI:
- Each platform builds both CPU and CUDA sidecar variants (except macOS: CPU only)
- Sidecar zips uploaded as separate release assets
- Asset naming: sidecar-{os}-{arch}-{variant}.zip
Frontend:
- SidecarSetup.svelte: first-launch setup with CPU/CUDA radio choice,
progress bar, error/retry handling
- Update banner on launch if newer sidecar version available
- Conditional rendering: setup screen → main app flow
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
882 B
TOML
29 lines
882 B
TOML
[package]
|
|
name = "voice-to-notes"
|
|
version = "0.2.11"
|
|
description = "Voice to Notes — desktop transcription with speaker identification"
|
|
authors = ["Voice to Notes Contributors"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "voice_to_notes_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
thiserror = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tauri-plugin-dialog = "2.6.0"
|
|
reqwest = { version = "0.12", features = ["stream"] }
|
|
futures-util = "0.3"
|