mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-15 04:40:40 -07:00
- Add is_favorited column with toggle endpoint and star button on history - Show sparkles icon on profile cards that have effects configured - Gold ring on selected profile cards - Smaller, gray action buttons with brighter hover - Clamp player time to duration to prevent runaway playback - Align profile card icon to top for wrapped names - Flush bottom corners on history card when versions expanded - Simplify .gitignore data/ rule
57 lines
461 B
Plaintext
57 lines
461 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
bun.lockb
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.prompt
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
target/
|
|
*.app
|
|
*.dmg
|
|
*.exe
|
|
*.msi
|
|
*.deb
|
|
*.AppImage
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data (user-generated)
|
|
data/
|
|
!data/.gitkeep
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Generated files
|
|
app/openapi.json
|
|
tauri/src-tauri/binaries/*
|
|
|
|
# Temporary
|
|
tmp/
|
|
temp/
|
|
*.tmp
|