Skip to content

Commit

Permalink
Merge pull request #237 from alex-setyawan/user-guide
Browse files Browse the repository at this point in the history
Edit user guide
  • Loading branch information
laney0808 authored Apr 15, 2024
2 parents af8ca21 + 4651e6a commit 07838f7
Show file tree
Hide file tree
Showing 21 changed files with 355 additions and 143 deletions.
4 changes: 2 additions & 2 deletions docs/AboutUs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can contact us individually through our portfolios
<img src="images/alex-setyawan.png" width="200px">

[[github](https://github.com/alex-setyawan)]
[[portfolio](team/johndoe.md)]
[[portfolio](team/alex-setyawan)]

* Role: Team Lead
* Responsibilities: Project Manager, Back-end
Expand Down Expand Up @@ -46,7 +46,7 @@ You can contact us individually through our portfolios
<img src="images/natleong.png" width="200px">

[[github](http://github.com/NatLeong)]
[[portfolio](team/johndoe.md)]
[[portfolio](team/alex-setyawan)]

* Role: Developer
* Responsibilities: Front-end, Documentation
490 changes: 351 additions & 139 deletions docs/UserGuide.md

Large diffs are not rendered by default.

Binary file added docs/images/AddVisitCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/CheckCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/ClusterCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/CreateCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/ErrorMessage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/FindAddressCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/FindConditionCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/FindNameCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/GUIDetailed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/GithubReleasePage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/JavaWebsite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/KeyboardArrowKeys.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/ReadCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/UpdateCommandResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/images/findAlexDavid.png
Binary file not shown.
Binary file removed docs/images/findSerangoon.png
Binary file not shown.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public CheckCommand parse(String args) throws ParseException {
}

try {
return new CheckCommand(new Nric(trimmedArg));
return new CheckCommand(new Nric(trimmedArg.toUpperCase()));
} catch (IllegalArgumentException e) {
throw new ParseException(
String.format("%s", e.getMessage()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public ReadCommand parse(String args) throws ParseException {
}

try {
return new ReadCommand(new Nric(trimmedArg));
return new ReadCommand(new Nric(trimmedArg.toUpperCase()));
} catch (IllegalArgumentException e) {
throw new ParseException(
String.format("%s", e.getMessage()));
Expand Down

0 comments on commit 07838f7

Please sign in to comment.