Compare commits

..

No commits in common. "fa3f4e49446d300b5a9d2a617b93770e5920c16f" and "b7b578893894da925dc983a8574a4e7028ffacfe" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,5 @@
# VT Player TODO
## Blockers
- Video loading not firing (menu and drag/drop). Investigate URI/path handling, loadVideo/probe flow, and UI wiring; add logging to confirm handlers fire and errors surface.
## Near-term UI/UX
- Replace placeholder play icon with a proper asset; keep centered “Load Video” and drop hint on any window size.
- Tighten control bar (Haruna-like): cleaner spacing, distinct buttons, consistent sizing.

View File

@ -14,7 +14,6 @@ import (
"image/png"
"io"
"math"
"net/url"
"os"
"os/exec"
"path/filepath"
@ -1674,7 +1673,7 @@ func runGUI() {
// Initialize UI colors
ui.SetColors(gridColor, textColor)
a := app.NewWithID("com.leaktechnologies.vtplayer")
a := app.NewWithID("com.leaktechnologies.videotools")
// Always start with a clean slate: wipe any persisted app storage (queue or otherwise)
if root := a.Storage().RootURI(); root != nil && root.Scheme() == "file" {
@ -1683,7 +1682,7 @@ func runGUI() {
a.Settings().SetTheme(&ui.MonoTheme{})
logging.Debug(logging.CatUI, "created fyne app: %#v", a)
w := a.NewWindow("VT Player")
w := a.NewWindow("VideoTools")
if icon := utils.LoadAppIcon(); icon != nil {
a.SetIcon(icon)
w.SetIcon(icon)