Prachi - Project Portfolio Page
Overview
NotUS is a quick and simple, Command Line Interface (CLI) based, note-taking application for keyboard-inclined users. NotUS allows for users to categorize notes by tagging as well as pinning the more important notes. NotUS is also designed to assist in planning timetables to highlight possible clashes.
- Documentation: responsible for the parts regarding saving and loading of files.
- Implementation of the data storage (saving and loading data from the hard disk).
- In charge of
pin-n
,view-n
.
Summary of Contributions
Features implemented
- Completed the following features and test code
pin-n
- Allows the user to pin the note that is deemed more important.
- These notes will be listed first when the user lists notes.
-
view-n
- Shows the user a specific note that is stored in the program.
- User will be able to view the note when revising or studying.
- Ensure proper loading of previously saved data
- After exiting the program, user will be able to access human editable text files for their notes.
- When restarting the program, the user will not have to re enter all the information again and can seemlessly access previously saved data.
- Ensure that all the data is saved when changes are made, in case the program is closed halfway the data is still saved. These changes occur specifically in the following classes:
AddEventCommand
,AddNoteCommand
,ArchiveNoteCommand
,UnarchiveNoteCommand
,CreateTagCommand
,DeleteEventCommand
,DeleteNoteCommand
,EditEventCommand
,EditNoteCommand
,PinCommand
,TagEventCommand
,TagNoteCommand
- Saving of all the notes and events when the programme ends.
Code contributed
- In the ‘StorageManager’ class, created the following methods:
createFiles
,createFile
,createDirectory
,loadAllNotes
,loadTimetable
,noteExists
,getNoteContent
,saveAllNoteDetails
,saveNote
,saveNoteContent
,saveNoteDetails
,deleteNoteContentFile
,saveTimetable
,getEventDetailsSaveFormat
,saveAll
- In the
Note
class, created the following methodstoSaveString
,togglePinned
,getContentString
Contributions to User Guide
Contributions to User Guide
- Maintain portions on the following commands