From 919f32258cd61e9c728ffda5c17deee014481d7a Mon Sep 17 00:00:00 2001 From: Chong Xern <104547209+ChongXern@users.noreply.github.com> Date: Thu, 11 Apr 2024 22:03:24 +0800 Subject: [PATCH 1/2] Add Project Portfolio Page for Chong Xern --- docs/team/chongxern.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/team/chongxern.md diff --git a/docs/team/chongxern.md b/docs/team/chongxern.md new file mode 100644 index 0000000000..8a1dda0fa1 --- /dev/null +++ b/docs/team/chongxern.md @@ -0,0 +1,12 @@ +# Chong Xern - Project Portfolio Page + +## Overview +Finance tracking application that helps keep track of all things related to finances such as income, spending, expenditure, reminders, gifts and more. + +### Summary of Contributions +[Code Contributed](https://nus-cs2113-ay2324s2.github.io/tp-dashboard/?search=&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code~other&since=2024-02-23&tabOpen=true&tabType=authorship&tabAuthor=ChongXern&tabRepo=AY2324S2-CS2113-F14-4%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code~other&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false/) by Chong Xern +#### Enhancements Implemented + +#### Contributions to User Guide + +#### Contributions to Developer Guide From b40aee03a67f2d23fd8d57e3d0db375610b85d49 Mon Sep 17 00:00:00 2001 From: ChongXern Date: Thu, 11 Apr 2024 22:12:12 +0800 Subject: [PATCH 2/2] Resolve Issue #100 Enable entering with uppercase to view chart --- src/main/java/command/ViewHistoryCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/command/ViewHistoryCommand.java b/src/main/java/command/ViewHistoryCommand.java index bb90f7fdd6..6fd558a38f 100644 --- a/src/main/java/command/ViewHistoryCommand.java +++ b/src/main/java/command/ViewHistoryCommand.java @@ -21,7 +21,7 @@ public String execute(TransactionManager manager) throws Exception{ } else { throw new IncorrectCommandSyntaxException(commandParts[0]); } - boolean isIncludeBarChart = commandParts.length == 3 && commandParts[2].equals("w/chart"); + boolean isIncludeBarChart = commandParts.length == 3 && commandParts[2].equalsIgnoreCase("w/chart"); return manager.showLastNTransactions(numTransactions, isIncludeBarChart); } }