From a5329e6a73c8cf9f4a0dced57756b6da9f71cb7a Mon Sep 17 00:00:00 2001 From: Wei Sheng Ong Date: Wed, 17 Mar 2021 21:17:37 +0800 Subject: [PATCH 1/3] Created jar file --- src/main/resources/META-INF/MANIFEST.MF | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main/resources/META-INF/MANIFEST.MF diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..cb7a4362f5 --- /dev/null +++ b/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: seedu.easylog.EasyLog + From 7acbbc72a21e2ccd61ed9627a1fa487391e5d8a5 Mon Sep 17 00:00:00 2001 From: Wei Sheng Ong Date: Wed, 17 Mar 2021 21:23:16 +0800 Subject: [PATCH 2/3] Minor ui fix --- src/main/java/seedu/easylog/common/Messages.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/seedu/easylog/common/Messages.java b/src/main/java/seedu/easylog/common/Messages.java index d1b74e2e31..7b2999b968 100644 --- a/src/main/java/seedu/easylog/common/Messages.java +++ b/src/main/java/seedu/easylog/common/Messages.java @@ -9,12 +9,12 @@ public class Messages { + " 1. items Show items-related commands\n" + " 2. items add Add an item\n" + " 3. items list List all items\n" - + " 4. items remove Remove an item\n" + + " 4. items delete Delete an item\n" + " 5. items clear Empty all items\n" + " 6. orders Show orders-related commands\n" + " 7. orders add Add an order\n" + " 8. orders list List all orders\n" - + " 9. orders remove Remove an order\n" + + " 9. orders delete Delete an order\n" + " 10. orders clear Empty all orders"; public static final String MESSAGE_GREETING = "Hello! I'm easyLog!\n" + "What can I do for you? Enter help to view commands."; @@ -36,12 +36,12 @@ public class Messages { public static final String MESSAGE_SHOW_ORDERS_RELATED_COMMANDS = "Orders-Related Options:\n" + " 1. orders add Add an order\n" + " 2. orders list List all orders\n" - + " 3. orders remove Remove an order\n" + + " 3. orders delete Delete an order\n" + " 4. orders clear Empty all orders"; public static final String MESSAGE_SHOW_ITEMS_COMMANDS = "Items-Related Options:\n" + " 1. items add Add an item\n" + " 2. items list List all items\n" - + " 3. items remove Remove an item\n" + + " 3. items delete Delete an item\n" + " 4. items clear Empty all items"; public static final String MESSAGE_ALREADY_CLEARED_ITEM_LIST = "OOPS!!! There is no single item which can be cleared right now!"; From b6799e9cec16c27a1023df2d47fb38cc98269385 Mon Sep 17 00:00:00 2001 From: Wei Sheng Ong Date: Wed, 17 Mar 2021 21:28:13 +0800 Subject: [PATCH 3/3] Update EXPECTED.TXT --- text-ui-test/EXPECTED.TXT | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/text-ui-test/EXPECTED.TXT b/text-ui-test/EXPECTED.TXT index a6973d232c..c91f7158da 100644 --- a/text-ui-test/EXPECTED.TXT +++ b/text-ui-test/EXPECTED.TXT @@ -4,22 +4,22 @@ General Options: 1. items Show items-related commands 2. items add Add an item 3. items list List all items - 4. items remove Remove an item + 4. items delete Delete an item 5. items clear Empty all items 6. orders Show orders-related commands 7. orders add Add an order 8. orders list List all orders - 9. orders remove Remove an order + 9. orders delete Delete an order 10. orders clear Empty all orders Items-Related Options: 1. items add Add an item 2. items list List all items - 3. items remove Remove an item + 3. items delete Delete an item 4. items clear Empty all items Orders-Related Options: 1. orders add Add an order 2. orders list List all orders - 3. orders remove Remove an order + 3. orders delete Delete an order 4. orders clear Empty all orders There is no item in the warehouse at the moment. Please add items to the system first.