| layout | page |
|---|---|
| title | User Guide |
ResidenceTracker (RT) is a desktop app for managing contacts, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast, RT can get your residence management tasks done faster than traditional GUI apps.
- Table of Contents {:toc}
-
Ensure you have Java
11or above installed in your Computer. -
Download the latest
residencetracker.jarfrom here. -
Copy the file to the folder you want to use as the home folder for your ResidenceTracker.
-
Double-click the file to start the app. The GUI similar to the below should appear in a few seconds. Note how the app contains some sample data.

-
Type the command in the command box and press Enter to execute it. e.g. typing
helpand pressing Enter will open the help window.
Some example commands you can try:-
list: Lists all residences in the app. -
addn/Clementi HDB a/459A Clementi Ave 3, #04-257, S121459 clean/n book/y: Adds a residence namedClementi HDBto the ResidenceTracker. -
delete3: Deletes the 3rd residence shown in the current list. -
clear: Deletes all residences. -
exit: Exits the app.
-
-
Refer to the Features below for details of each command.
ℹ️ Notes about the command format:
-
Words in
UPPER_CASEare the parameters to be supplied by the user.
e.g. inadd n/NAME,NAMEis a parameter which can be used asadd n/Amber Heights. -
Items in square brackets are optional.
e.gn/NAME [t/TAG]can be used asn/Amber Heights t/friendor asn/Amber Heights. -
Items with
… after them can be used multiple times including zero times.
e.g.[t/TAG]…can be used as(i.e. 0 times),t/friend,t/friend t/familyetc. -
Parameters can be in any order.
e.g. if the command specifiesn/NAME a/ADDRESS,a/ADDRESS n/NAMEis also acceptable. -
If a parameter is expected only once in the command but you specified it multiple times, only the last occurrence of the parameter will be taken.
e.g. if you specifya/Jurong West St 60 a/Jurong West St 70, onlya/Jurong West St 70will be taken. -
Extraneous parameters for commands that do not take in parameters (such as
help,list,exitandclear) will be ignored.
e.g. if the command specifieshelp 123, it will be interpreted ashelp.
Shows a message explaining how to access the help page.
Format: help
Adds a new residence to the list of residences,default for CLEANING_STATUS and BOOKING_STATUS is ‘cleaned’ and ‘not-booked’ respectively.
Format: add n/NAME_OF_APARTMENT a/ADDRESS [clean/[y or n]] [book/[y or n]] [p/LOCK_PASSWORD] [d/BOOKING_DETAILS]
Examples:
add n/Melville Park a/22 Simei Street 1, #10-02, S529948add n/Clementi HDB a/459A Clementi Ave 3, #04-257, S121459 clean/n book/y
Shows a list of all residences in the app.
Format: list
Edits the booking/cleaning status of an existing residence
Format: edit u/(un)clean [INDEX] u/(un)book [INDEX]
- Edits the residence status at the specified
INDEX. The index refers to the index number shown in the displayed person list. The index must be a positive integer 1, 2, 3, … - At least one of the optional fields (either clean or book status) must be provided.
- If both fields are provided,
INDEXfield should be of the same value.
Examples:
edit u/clean 1Edits the clean status of the 1st residence on the list fromUncleantoClean. Booking status remains unchanged from original value.edit u/unclean 2 u/unbook 2Edits the clean status of the 2nd residence on the list fromUncleantoClean, booking status of the same residence fromBookedtoUnbooked.
Finds residences whose names contain any of the given keywords.
Format: find KEYWORD [MORE_KEYWORDS]
- The search is case-insensitive. e.g
duxtonwill matchDuxton - The order of the keywords does not matter. e.g.
Gardens Baywill matchBay Gardens - Only the name is searched.
- Only full words will be matched e.g.
Duxwill not matchDuxton - Apartments matching at least one keyword will be returned (i.e.
ORsearch). e.g.Gardens Baywill returnBotanic Gardens,Bay Area
Examples:
find heightsreturnsHillview HeightsandAspen Heightsfind east coastreturnsEast View,West Coast
Deletes the specified residence from the list of residences.
Format: delete INDEX
- Deletes the residence at the specified
INDEX. - The index refers to the index number shown in the displayed residences list (i.e. NOT zero-indexed).
- The index must be a positive integer (>0)
Examples:
listfollowed bydelete 3deletes the 3rd residence in the list of residences.
Clears all entries from the residence tracker.
Format: clear
Exits the program.
Format: exit
ResidenceTracker data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
ResidenceTracker data are saved as a JSON file [JAR file location]/data/ResidenceTracker.json. Advanced users are welcome to update data directly by editing that data file.
Details coming soon ...
Q: How do I transfer my data to another Computer?
A: Install the app in the other computer and overwrite the empty data file it creates with the file that contains the data of your previous ResidenceTracker home folder.
| Action | Format, Examples |
|---|---|
| Add | add n/NAME_OF_RESIDENCE a/ADDRESS [clean/[y or n]] [book/[y or n]] [p/LOCK_PASSWORD] [d/BOOKING_DETAILS]]… e.g., add n/Clementi HDB a/459A Clementi Ave 3, #04-257, S121459 clean/n book/y |
| Clear | clear |
| Delete | delete INDEXe.g., delete 3 |
| Edit | edit u/(un)clean [INDEX] u/(un)book [INDEX]e.g., edit u/unclean 2 u/unbook 2 |
| Find | find KEYWORD [MORE_KEYWORDS]e.g., find Heights |
| List | list |
| Help | help |
| Exit | exit |
