All checks were successful
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>
25 lines
968 B
Python
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
|