Add docs/RELEASE-0.10-PLAN.md covering the open roadmap follow-ups plus per-job overlap policy, run-time statistics, one-line activity entries, log-name fix, and 720p window sizing. Drop the non-portable delivery formats (.deb, installer, AppImage, Flatpak, winget) from ROADMAP. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2.1 KiB
Roadmap
This file tracks planned GoSentry work that is larger than a single bug fix.
Refactoring Follow-Ups
Loose ends found while verifying the refactoring against its Definition of done. The architecture target is reached and verified on Windows and Linux.
-
File-size guidelines exceeded (soft limits). The DoD suggests no
src/uifile over ~250 lines and no single file over ~400:src/ui/jobs_view.go— 415 lines (over both the ~250 UI target and the ~400 cap).src/app/operations_test.go(536) also exceeds 400.
These are soft ("~") limits; revisit when next touching those files rather than splitting purely for line count.
Post-Field-Test Cleanup
After real-world use confirms the main workflows, clean up temporary stabilization code and development scaffolding.
Cleanup checklist:
- Review and remove debug-oriented diagnostics that are no longer useful.
- Remove excessive defensive checks once behavior is proven and covered by the right tests.
- Remove obsolete compatibility cleanup, such as old autostart migration code, after the transition window is over.
- Delete stale generated files and old build artifacts from local/release flows.
- Revisit tests and remove ones that only lock in temporary implementation details instead of real user-facing behavior.
- Simplify README notes that were useful during early setup but are too noisy for normal users.
- Recheck
.gitignore, Docker scripts, and packaging scripts for rules or branches that only supported early experiments.
Delivery And Packaging
Keep a single portable binary as the baseline delivery format. It is simple to test, easy to copy between machines, and matches the current storage model where runtime YAML files live next to the executable by default.
Planned delivery variants:
- Windows portable
.zipwithgosentry.exe,README.md, andCHANGELOG.md. - Linux portable
.tar.gzarchives forlinux-amd64andlinux-arm64.
Portable builds keep settings and jobs next to the executable.
Initial priority:
- Windows portable
.zip. - Linux portable
.tar.gzfor amd64 and arm64.