13c32c90d5
Bare 'drover' (and 'drover gui') no longer pop a Win32 MessageBox — they hand off to internal/gui which mounts a real Wails window with the Classic React variant. The old gui_windows.go / gui_other.go files are removed; their job is now done by internal/gui/run.go. Auto-update on startup is unchanged — still runs before gui.Run(). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
45 lines
649 B
Plaintext
45 lines
649 B
Plaintext
# Build output
|
|
/bin/
|
|
/dist/
|
|
/build/
|
|
*.exe
|
|
*.dll.o
|
|
*.test
|
|
*.out
|
|
|
|
# Wails
|
|
/internal/gui/frontend/node_modules/
|
|
/internal/gui/frontend/dist/
|
|
.wails/
|
|
# wailsjs/ is generated, but we keep it tracked because we hand-write
|
|
# bindings/App.js for the gui-package layout (see comment in that file)
|
|
|
|
# IDE
|
|
/.idea/
|
|
/.vscode/
|
|
/.claude/
|
|
*.iml
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Inno Setup compiled installers (only release artifacts go to the registry)
|
|
/installer/Output/
|
|
*-setup.exe
|
|
|
|
# Logs / dumps
|
|
*.log
|
|
crash.txt
|
|
|
|
# Local config (must not contain secrets, but stay safe)
|
|
/config.local.toml
|
|
|
|
# Coverage
|
|
coverage.out
|
|
coverage.txt
|
|
coverage.html
|