Skip to content

Latest commit

History

History
48 lines (38 loc) 路 2.49 KB

CHANGELOG.md

File metadata and controls

48 lines (38 loc) 路 2.49 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

Added

  • New option to play a sound when transcription finishes (Issue #40).

Changed

  • Upgraded to latest versions of OpenAI API and faster-whisper, including support for local API (Issue #32)

1.0.1 - 2024-01-28

Added

  • New message to identify whether Whisper was being called using the API or running locally.
  • Additional hold-to-talk (PR #28) and press-to-toggle recording methods (Issue #21).
  • New configuration options to:
    • Choose recording method (defaulting to voice activity detection).
    • Choose which sound device and sample rate to use.
    • Hide the status window (PR #28).

Changed

  • Migrated from whisper to faster-whisper (Issue #11).
  • Migrated from pyautogui to pynput (PR #10).
  • Migrated from webrtcvad to webrtcvad-wheels (PR #17).
  • Changed default activation key combo from ctrl+alt+space to ctrl+shift+space.
  • Changed to using a local model rather than the API by default.
  • Revamped README.md, including new Roadmap, Contributing, and Credits sections.

Fixed

  • Local model is now only loaded once at start-up, rather than every time the activation key combo was pressed.
  • Default configuration now auto-chooses compute type for the local model to avoid warnings.
  • Graceful degradation to CPU if CUDA isn't available (PR #30).
  • Removed long prefix of spaces in transcription (PR #19).

1.0.0 - 2023-05-29

Added

  • Initial release of WhisperWriter.
  • Added CHANGELOG.md.
  • Added Versioning and Known Issues to README.md.

Changed

  • Updated Whisper Python package; the local model is now compatible with Python 3.11.