1
0
Fork 0

feat(ui): default to active queue, scope search toolbar, add double-bezel inspector, optimize queue columns, and achieve 100% pure Korean UI

This commit is contained in:
Yun Chan 2026-09-05 12:25:30 +09:00
parent 455c8b1324
commit 4ca7352dc3
27 changed files with 2477 additions and 659 deletions

9
tools/test_launch.ps1 Normal file
View file

@ -0,0 +1,9 @@
$exe = "D:\workspace\Everything2Everthing\src\Everything2Everything.App\bin\Debug\net9.0-windows10.0.19041.0\Everything2Everything.exe"
$testFile = "D:\workspace\Everything2Everthing\test_assets\test_icon.png"
Write-Host "Starting: $exe"
$proc = Start-Process -FilePath $exe -ArgumentList "`"$testFile`"" -PassThru
Start-Sleep -Seconds 3
Get-Process -Id $proc.Id | Format-List Id, ProcessName, MainWindowHandle, MainWindowTitle, Responding
Start-Sleep -Seconds 1
Stop-Process -Id $proc.Id -Force
Write-Host "Done"