16 lines
577 B
Python
16 lines
577 B
Python
|
|
"""Version information for Local Transcription."""
|
||
|
|
|
||
|
|
__version__ = "1.2.4"
|
||
|
|
__version_info__ = (1, 2, 4)
|
||
|
|
|
||
|
|
# 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
|