Vevek's Project Portfolio Page
Project: CoLAB
CoLAB (Collaboration Lab) is a desktop app for university students to manage their school projects. The user interacts with it using a CLI, and it has a GUI created with JavaFX.
Given below are my contributions to the project.
- New Feature: Added add & delete todo/deadline/event commands.
- What it does: This feature allows the user to add or delete a todo/deadline/event to/from a project.
- Justification: This feature improves the product significantly as it is a core part of the application.
- Highlights: This enhancement required an in-depth analysis of design alternatives. The implementation was challenging because it involved the index of the project and the todo/deadline/event within the project as well as thinking through the implementation of todo/deadline/event models.
- New Feature: Added mark todo/deadline commands.
- What it does: This feature allows the user to mark a todo/deadline in a project as done.
- Justification: This feature improves the product significantly as it is a core part of the application.
- Highlights: This enhancement required an in-depth analysis of design alternatives. The implementation was challenging because it involved thinking through the implementation of todo/deadline models as well as considering the implications of having a todo/deadline marked as done within the context of a project.
- New Feature: Added the ability for events to repeat weekly.
- What it does: This feature allows the user to create an event that repeats weekly with a specified start date and start time.
- Justification: This feature improves the product significantly as it is a core part of the application.
- Highlights: This enhancement required an in-depth analysis of design alternatives. The implementation was challenging because it involved thinking through the implementation of the event model.
- Enhancements implemented:
- Commons
- Added DateUtil.
- Added TimeUtil.
- Added DateConversionException.
- Added TimeConversionException.
- Model
- Added CompletableTodo, CompletableDeadline, Repeatable, Todo, Deadline and Event classes to the model to allow for further extension of previous versions.
- Refactored existing code to fit the new model format.
- Logic
- Add todo/deadline command.
- Delete todo/deadline/event command.
- Mark todo/deadline command.
- Testing
- Added tests for todo/deadline/event models.
- Added tests for add/delete/mark todo/deadline/event commands and as well as their respective parsers.
- Commons
-
Code contributed: RepoSense link
- Project management:
- Managed releases
v1.4
on GitHub (2 releases). - Managed some deadlines and deliverables as well as updated issue tracker and milestones.
- Managed releases
- Documentation:
- User Guide:
- Added documentation for the features
Deadlines
,Events
andTodos
and other features. - Did cosmetic tweaks to various parts of the documentation.
- Update user guide introduction and quick start.
- Update documentation for the command summary and FAQ.
- Added documentation for the features
- Developer Guide:
- Added implementation details of the
Deadlines
,Events
andTodos
models.
- Added implementation details of the
- User Guide:
- Contributions to Team Based Tasks:
- Set up the GitHub team org, tools and repo.
- Set up the issue tracker with required labels.
- Updated documentation and config for different product.
- Community:
- Contribution to Other Projects:
- Helped to find bugs for Team CS2103-W16-4 during the PE dry run, during which I found and reported more than 16 errors and gave various suggestions regarding design and documentation.