Skip to content

Commit

Permalink
Merge pull request #103 from ongweisheng/create-jar-file
Browse files Browse the repository at this point in the history
Created jar file
  • Loading branch information
ongweisheng authored Mar 17, 2021
2 parents 37d587a + b6799e9 commit a6fa58a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/main/java/seedu/easylog/common/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ public class Messages {
+ " 1. items Show items-related commands\n"
+ " 2. items add <item_name> Add an item\n"
+ " 3. items list List all items\n"
+ " 4. items remove <item_name> Remove an item\n"
+ " 4. items delete <item_index> Delete an item\n"
+ " 5. items clear Empty all items\n"
+ " 6. orders Show orders-related commands\n"
+ " 7. orders add <order_name> Add an order\n"
+ " 8. orders list List all orders\n"
+ " 9. orders remove <order_name> Remove an order\n"
+ " 9. orders delete <order_index> 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.";
Expand All @@ -36,12 +36,12 @@ public class Messages {
public static final String MESSAGE_SHOW_ORDERS_RELATED_COMMANDS = "Orders-Related Options:\n"
+ " 1. orders add <order_name> Add an order\n"
+ " 2. orders list List all orders\n"
+ " 3. orders remove <order_name> Remove an order\n"
+ " 3. orders delete <order_index> 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 <item_name> Add an item\n"
+ " 2. items list List all items\n"
+ " 3. items remove <item_name> Remove an item\n"
+ " 3. items delete <item_index> 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!";
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: seedu.easylog.EasyLog

8 changes: 4 additions & 4 deletions text-ui-test/EXPECTED.TXT
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ General Options:
1. items Show items-related commands
2. items add <item_name> Add an item
3. items list List all items
4. items remove <item_name> Remove an item
4. items delete <item_index> Delete an item
5. items clear Empty all items
6. orders Show orders-related commands
7. orders add <order_name> Add an order
8. orders list List all orders
9. orders remove <order_name> Remove an order
9. orders delete <order_index> Delete an order
10. orders clear Empty all orders
Items-Related Options:
1. items add <item_name> Add an item
2. items list List all items
3. items remove <item_name> Remove an item
3. items delete <item_index> Delete an item
4. items clear Empty all items
Orders-Related Options:
1. orders add <order_name> Add an order
2. orders list List all orders
3. orders remove <order_name> Remove an order
3. orders delete <order_index> 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.
Expand Down

0 comments on commit a6fa58a

Please sign in to comment.