From 15a7f81a2812673cbd3165e04bdae5f8de2991b3 Mon Sep 17 00:00:00 2001 From: Ray Berezowski <6616212+rberezowski@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:12:27 -0400 Subject: [PATCH] Track future launcher ideas --- docs/DEV-NOTES.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/DEV-NOTES.md b/docs/DEV-NOTES.md index 93ac24c..2d15ba8 100644 --- a/docs/DEV-NOTES.md +++ b/docs/DEV-NOTES.md @@ -17,3 +17,31 @@ TaskbarLauncher.exe --show-launcher - `--show-launcher` opens the launcher popup after startup. These switches are not part of the normal user workflow. They exist so development and documentation captures can be repeated cleanly. + +## Future Ideas + +These ideas are intentionally tracked on `dev` only. Do not publish them on `main` until a feature is built, tested, and ready for users. + +### Open All for Menu Sections + +Add a simple right-click action on menu and submenu headers: + +- `Open All` + +Expected behavior: + +- Right-click a top-level menu or submenu title. +- Click `Open All`. +- Launch each direct child item in that section. +- For nested submenus, decide later whether `Open All` should include only direct items or recursively include nested children. +- Skip unsupported items safely and show/log a clear result if something cannot be opened. + +This keeps Taskbar Launcher focused as a launcher. It gives project-style behavior without adding a full project dashboard. + +### Project Launcher Concept + +Parked for later as a possible personal/custom feature: + +- Project item type with actions for folder, VS Code, terminal, docs, Git/Gitea page, local server, Docker Compose, and helper scripts. +- Could become useful, but it is larger than the current public app direction. +- Do not start this until the simpler `Open All` behavior is tested and proves insufficient.