Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ FodyWeavers.xsd
# Tauri / Rust
target/
src-tauri/gen/
src-tauri/.cargo/

# Node.js / Vite
dist/
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ Hotkey-driven, system-tray-style dictation tool. Hold a global hotkey to record
- [Node.js](https://nodejs.org/) 24+ (see `.nvmrc`)
- [Rust](https://rustup.rs/) 1.70+
- Platform-specific:
- **Windows**: Visual Studio Build Tools
- **Windows**: Visual Studio Build Tools, [LLVM](https://releases.llvm.org/) (for `libclang.dll`, required by Whisper bindings — install via `winget install LLVM.LLVM` and set `LIBCLANG_PATH=C:\Program Files\LLVM\bin`). You may also need to set `BINDGEN_EXTRA_CLANG_ARGS` to point at your MSVC headers so bindgen can find `stdbool.h`:

```cmd
set BINDGEN_EXTRA_CLANG_ARGS=-I"C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\<version>\include"
```

- **macOS**: Xcode Command Line Tools, Opus (`brew install opus`)

## Development
Expand Down
Loading
Loading