Files
MuyueWorkspace/internal/version/version.go
Augustin e3cd618cb1
All checks were successful
CI / build (push) Successful in 24s
feat: redesign TUI + Ctrl+C quit confirm + version logic + sudo handling
- Replace 'q' quit with Ctrl+C confirmation dialog (Yes/No overlay)
  Second Ctrl+C within 2s force quits
- Redesign TUI with Charm bubbles components: spinner, progress bar,
  help bar, key bindings, better color palette, rounded borders
- Add Shift+Tab to cycle tabs backward
- Fix version: bump to 0.2.0, release workflow checks existing tags
  before publishing (no more overwriting releases)
- Handle sudo: CLI auto-relaunches with sudo/pkexec for tools that
  need elevated privileges, TUI shows clear error message

💘 Generated with Crush

Assisted-by: GLM-5.1 via Crush <crush@charm.land>
2026-04-19 23:22:04 +02:00

13 lines
176 B
Go

package version
const (
Name = "muyue"
Version = "0.2.0"
Author = "La Légion de Muyue"
License = "MIT"
)
func FullVersion() string {
return Name + " v" + Version
}