From 1ecb23b83f07bc6968ecc977f303512a3787171b Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 7 Apr 2026 08:55:25 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20to=20v2.0.0=20=E2=80=94=20cross-platform?= =?UTF-8?q?=20Tauri=20rewrite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Major version bump reflecting the architecture change from PySide6/Qt to Tauri v2 + Svelte 5 with cross-platform support for Windows, macOS, and Linux. Key changes since v1.4.0: - Tauri v2 native desktop shell replacing PySide6/Qt - Svelte 5 reactive frontend - Headless Python backend as a downloadable sidecar - Deepgram cloud transcription (managed + BYOK) - Gitea CI/CD with per-OS builds and automated releases - Sidecar auto-update checking on startup - 63-test suite (Python + Svelte + Rust) Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- version.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a9acfa8..57e2e1a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "local-transcription", "private": true, - "version": "1.4.21", + "version": "2.0.0", "type": "module", "scripts": { "dev": "vite dev", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 7e01539..1ecb642 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "local-transcription" -version = "1.4.21" +version = "2.0.0" description = "Real-time speech-to-text transcription for streamers" authors = ["Local Transcription Contributors"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1eea76e..2343e6b 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "Local Transcription", - "version": "1.4.21", + "version": "2.0.0", "identifier": "net.anhonesthost.local-transcription", "build": { "frontendDist": "../dist", diff --git a/version.py b/version.py index 868b58b..9bc2a94 100644 --- a/version.py +++ b/version.py @@ -1,7 +1,7 @@ """Version information for Local Transcription.""" -__version__ = "1.4.21" -__version_info__ = (1, 4, 21) +__version__ = "2.0.0" +__version_info__ = (2, 0, 0) # Version history: # 1.4.0 - Auto-update feature: