feat: Milestone System to keep track of sprints and phases of a project #45
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
mainbranch of tmpo.Closes #23
Description
This pull request introduces comprehensive milestone management to the application, allowing users to create, finish, view the status of, and list milestones for projects. It also enhances time entry and history commands to support associating entries with milestones and filtering by milestones. The most important changes are grouped below.
Milestone Management Features:
milestonecommand group with subcommands to start, finish, check status, and list milestones for projects (cmd/milestones/milestone.go,cmd/milestones/start.go,cmd/milestones/finish.go,cmd/milestones/status.go,cmd/milestones/list.go). [1] [2] [3] [4] [5]cmd/root.go). [1] [2]Time Entry Enhancements:
cmd/entries/manual.go,cmd/tracking/start.go,cmd/tracking/resume.go). [1] [2] [3] [4]cmd/entries/manual.go,cmd/history/log.go). [1] [2]History and Export Improvements:
logandexportcommands to allow filtering time entries by milestone via a new--milestoneflag, and display milestone information in logs (cmd/history/log.go,cmd/history/export.go). [1] [2] [3] [4] [5] [6]Internal Refactoring:
cmd/entries/manual.go,cmd/history/export.go,cmd/history/log.go). [1] [2] [3]These changes collectively provide robust milestone management and improved tracking and reporting capabilities for project time entries.
Screenshots