Sync: Complete project state with all MEGA SPRINT V1-V3 features and Codex stubs

This commit is contained in:
renato97
2026-04-08 17:58:47 -03:00
parent c9d3528900
commit 6d080d43b3
372 changed files with 189715 additions and 8590 deletions

21
restart_clean.ps1 Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env powershell
# Cleanup and restart Ableton
# Stop Ableton processes
Get-Process 'Ableton Live 12 Suite' -ErrorAction SilentlyContinue | Stop-Process -Force
Get-Process 'AbletonPushCpl' -ErrorAction SilentlyContinue | Stop-Process -Force
Get-Process 'Ableton Index' -ErrorAction SilentlyContinue | Stop-Process -Force
Start-Sleep -Seconds 3
# Remove recovery file
$recoveryFile = 'C:\Users\ren\AppData\Roaming\Ableton\Live 12.0.15\Preferences\CrashRecoveryInfo.cfg'
if (Test-Path $recoveryFile) {
Remove-Item -LiteralPath $recoveryFile -Force
Write-Host "Recovery file eliminado"
} else {
Write-Host "No habia recovery file"
}
# Start Ableton
Start-Process -FilePath 'C:\ProgramData\Ableton\Live 12 Suite\Program\Ableton Live 12 Suite.exe'
Write-Host "Ableton iniciado"