chore: Clean up repo - remove audio files and update gitignore

- Remove tracked audio files (ogg, wav) from git history
- Update .gitignore to ignore all audio formats (ogg, wav, mp3, flac, aac, m4a)
- Remove local config and temp files from tracking

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
StillHammer 2025-11-23 17:34:10 +08:00
parent 8bba4f9334
commit 371e86d0b7
38 changed files with 5 additions and 51 deletions

View File

@ -1,15 +0,0 @@
{
"permissions": {
"allow": [
"Bash(timeout:*)",
"Bash(cmake --build:*)",
"Bash(./build_mingw.bat)",
"Bash(powershell.exe -Command \"Get-Command gcc -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Source; if (-not $?) { Get-ChildItem -Path ''C:\\ProgramData\\chocolatey\\bin'' -Filter ''gcc.exe'' -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1 -ExpandProperty FullName; Get-ChildItem -Path ''C:\\mingw64'' -Filter ''gcc.exe'' -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1 -ExpandProperty FullName }\")",
"Bash(copy \"E:\\Users\\Alexis Trouvé\\Documents\\Projets\\secondvoice\\config.json\" \"E:\\Users\\Alexis Trouvé\\Documents\\Projets\\secondvoice\\build\\mingw-Release\\config.json\")",
"Bash(powershell.exe -Command \"cmd /c ''E:\\Users\\Alexis Trouvé\\Documents\\Projets\\secondvoice\\build_mingw.bat'' 2>&1\")",
"Bash(powershell.exe:*)"
],
"deny": [],
"ask": []
}
}

9
.gitignore vendored
View File

@ -34,8 +34,6 @@ vcpkg/
.env .env
# Recordings (generated at runtime) # Recordings (generated at runtime)
recordings/*.wav
recordings/*.mp3
recordings/*.txt recordings/*.txt
recordings/*.md recordings/*.md
recordings/*.json recordings/*.json
@ -58,10 +56,13 @@ compile_commands.json
# ImGui # ImGui
imgui.ini imgui.ini
# Temp audio files # Audio files
*.ogg *.ogg
*.wav *.wav
!recordings/*.wav *.mp3
*.flac
*.aac
*.m4a
denoised/ denoised/
# Claude Code local settings # Claude Code local settings

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +0,0 @@
[Window][Debug##Default]
Pos=60,60
Size=400,400
[Window][SecondVoice]
Pos=0,0
Size=1500,800

View File

@ -1,24 +0,0 @@
# Script to build and run SecondVoice
Write-Host "Building SecondVoice..." -ForegroundColor Cyan
# Get script directory
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
Set-Location $scriptDir
# Execute build script
& cmd /c .\build_mingw.bat
if ($LASTEXITCODE -eq 0) {
Write-Host "`nBuild successful! Launching application..." -ForegroundColor Green
# Check for executable
if (Test-Path "build\mingw-Release\SecondVoice.exe") {
Set-Location "build\mingw-Release"
& .\SecondVoice.exe
} else {
Write-Host "Executable not found at expected location" -ForegroundColor Red
}
} else {
Write-Host "`nBuild failed!" -ForegroundColor Red
exit 1
}

Binary file not shown.

Binary file not shown.