The src/lib/ directory was being excluded by a Python .gitignore rule for lib/ (meant for Python's build output). Changed to /lib/ so it only matches root-level lib/ and doesn't block src/lib/. Adds 8 files that were created but missed in the initial commit: - 5 Svelte components (Header, StatusBar, Controls, TranscriptionDisplay, Settings) - 3 TypeScript stores (backend, config, transcriptions) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
66 lines
568 B
Plaintext
66 lines
568 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
/lib/
|
|
/lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
.venv
|
|
|
|
# uv
|
|
uv.lock
|
|
.python-version
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Application specific
|
|
*.log
|
|
config/*.yaml
|
|
!config/default_config.yaml
|
|
.local-transcription/
|
|
|
|
# Model cache
|
|
models/
|
|
.cache/
|
|
|
|
# PyInstaller
|
|
*.spec.lock
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Vite / Svelte build output
|
|
dist/
|
|
|
|
# Tauri
|
|
src-tauri/target/
|