Files
local-transcription/version.py
Developer 1ecb23b83f
All checks were successful
Release / Run Tests (push) Successful in 9s
Tests / Python Backend Tests (push) Successful in 5s
Tests / Frontend Tests (push) Successful in 6s
Tests / Rust Sidecar Tests (push) Successful in 2m7s
Release / Bump version and tag (push) Successful in 4s
Bump to v2.0.0 — cross-platform Tauri rewrite
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) <noreply@anthropic.com>
2026-04-07 08:55:25 -07:00

25 lines
968 B
Python

"""Version information for Local Transcription."""
__version__ = "2.0.0"
__version_info__ = (2, 0, 0)
# Version history:
# 1.4.0 - Auto-update feature:
# - Automatic update checking on startup (configurable)
# - Shows update dialog with release notes when new version available
# - Opens browser to Gitea release page for download
# - Skip version option to dismiss specific updates
# - Manual "Check for Updates Now" button in settings
#
# 1.3.1 - User-configurable colors for transcription display
#
# 1.0.0 - Initial release with:
# - Real-time speech-to-text transcription using Whisper models
# - Local web display for OBS browser source integration
# - Multi-user server sync with Node.js backend
# - Two-stage transcription (fast preview + refined final)
# - Custom font support (local and forwarded to sync server)
# - Single instance prevention
# - Fast speaker mode for continuous speech
# - Remote GPU processing offload support