Files
local-transcription/version.py
jknapp 89819f5d1b Add user-configurable colors for transcription display
- Add color settings (user_color, text_color, background_color) to config
- Add color picker buttons in Settings dialog with alpha support for backgrounds
- Update local web display to use configurable colors
- Send per-user colors with transcriptions to multi-user server
- Update Node.js server to apply per-user colors on display page
- Improve server landing page: replace tech details with display options reference
- Bump version to 1.3.2

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 20:59:13 -08:00

16 lines
577 B
Python

"""Version information for Local Transcription."""
__version__ = "1.3.1"
__version_info__ = (1, 3, 1)
# Version history:
# 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