Jeremy Tan's Project Portfolio Page
Project: ZooKeep
ZooKeep is a desktop app for managing animals under a zookeeper’s care, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI), created with JavaFX. It is written in Java, and has about 10 kLoC.
Given below are my contributions to the project.
-
Code contributed: RepoSense link
- New Feature: Added the ability to append information to existing animal fields (#148)
- What it does: Allows the user to add additional information to animal fields that are already populated.
- Justification: For the fields FeedTime and MedicalCondition, there may be scenarios where additional information may need to be added at a later date.
- Highlights: This enhancement is branched out from the original EditCommand in AddressBook3. It complements the ReplaceCommand that was also created.
- New Feature: Added the ability to replace information in existing animal fields (#148)
- What it does: Allows the user to replace information in animal fields that are already populated.
- Justification: Some fields should only contain a maximum of 1 value at a time (eg. Name, ID). Hence, a replace command makes sense here (instead of append).
- Highlights: This enhancement is branched out from the original EditCommand in AddressBook3. It complements the AppendCommand that was also created.
- Enhancements to existing features:
- Refactor references to addressbook.json (#58)
- Update delete command to take an ID input instead of index (#65)
- Add feeding times field to Animal model and AddCommand (#96)
- Allow duplicate names for Animals and prevent duplicate IDs (#115) and (#116)
- Add CommandException for unchanged fields in ReplaceCommand and AppendCommand (#285) and (#287)
- Documentation:
- User Guide:
- Developer Guide:
- Team-based Tasks: