summaryrefslogtreecommitdiff
path: root/cmd/mediaplayer/main.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-01 12:40:30 +0300
committerPaul Buetow <paul@buetow.org>2026-05-01 12:40:30 +0300
commit27dbaf2b2d5895a091d04aa1c852abb91a619e2d (patch)
tree846ba964ee6f0fba52ccb2b1750d44b21c454efb /cmd/mediaplayer/main.go
parentbadc2543eaa319657ecc97453fbdca58679ecb87 (diff)
Minimalist UI: hide all elements until activated; add help modal and keyboard shortcuts
- Redesign UI to be invisible by default: only header + '?' button shown - Press m to show sidebar, t for toolbar, / for search, ? for help - Add help modal with all keyboard shortcuts - Fix scanner to skip corrupt/unprobeable files instead of aborting - Fix scanner to skip thumbnail errors instead of aborting - Fix rescan to use background context so it completes after HTTP response - Rename project from KISS Media Player to Player
Diffstat (limited to 'cmd/mediaplayer/main.go')
-rw-r--r--cmd/mediaplayer/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mediaplayer/main.go b/cmd/mediaplayer/main.go
index 7e5df5c..33927c0 100644
--- a/cmd/mediaplayer/main.go
+++ b/cmd/mediaplayer/main.go
@@ -95,7 +95,7 @@ func run(args []string) error {
gs := api.NewGracefulServer(server, cfg)
- log.Printf("kiss-media-player %s starting on %s", internal.Version, gs.Server.Addr)
+ log.Printf("player %s starting on %s", internal.Version, gs.Server.Addr)
go func() {
if err := gs.Server.ListenAndServe(); err != nil && err != http.ErrServerClosed {