This commit is contained in:
StillHammer 2025-11-23 16:57:36 +08:00
parent 4e9b7f9e95
commit 8bba4f9334
38 changed files with 53 additions and 1 deletions

View File

@ -3,7 +3,11 @@
"allow": [
"Bash(timeout:*)",
"Bash(cmake --build:*)",
"Bash(./build_mingw.bat)"
"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": []

16
.gitignore vendored
View File

@ -5,6 +5,7 @@ out/
# vcpkg
vcpkg_installed/
vcpkg/
# IDE
.vscode/
@ -53,3 +54,18 @@ CMakeFiles/
cmake_install.cmake
Makefile
compile_commands.json
# ImGui
imgui.ini
# Temp audio files
*.ogg
*.wav
!recordings/*.wav
denoised/
# Claude Code local settings
.claude/settings.local.json
# Build scripts (local)
run_build.ps1

BIN
denoised/denoised_0.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_1.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_10.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_11.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_12.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_13.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_14.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_15.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_16.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_17.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_18.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_19.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_2.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_20.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_21.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_3.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_4.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_5.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_6.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_7.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_8.ogg Normal file

Binary file not shown.

BIN
denoised/denoised_9.ogg Normal file

Binary file not shown.

8
imgui.ini Normal file
View File

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

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.

24
run_build.ps1 Normal file
View File

@ -0,0 +1,24 @@
# 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
}

BIN
secondvoice_temp.ogg Normal file

Binary file not shown.

BIN
secondvoice_temp.wav Normal file

Binary file not shown.