You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# User Guide for Duke
2
-
Duke is a simple application that makes use of a Command Line Interface to help you in keeping track of your daily tasks.
2
+
Duke is a simple application that makes use of a Command Line Interface to help you in managing and keeping track of
3
+
your daily tasks.
3
4
4
5
## Installation
5
6
1. Install Java 11 on your machine if you have not done so yet. You can follow the guide [here](https://docs.aws.amazon.com/corretto/latest/corretto-11-ug/what-is-corretto-11.html).
@@ -9,6 +10,29 @@ Duke is a simple application that makes use of a Command Line Interface to help
9
10
5. Run the command `java -jar [filename].jar` to launch the application.
10
11
11
12
## Features
13
+
### 3 Types of Tasks
14
+
Duke categorizes tasks into 3 different types: Todo, Deadline and Event.
15
+
16
+
#### Todo
17
+
A Todo is a type of task that does not have any date attached to it and only contains the description.
18
+
19
+
#### Deadline
20
+
A Deadline is a type of task that has to be done by a specified date and time. It contains the description and the date
21
+
and time of due.
22
+
23
+
#### Event
24
+
An Event is a type of task that is to be done at a specified date and time. It contains the description and the date and
25
+
time of the Event.
26
+
27
+
### User Friendly Prompts
28
+
Duke prompts you with helpful messages to guide you in using the commands correctly whenever an incorrect or invalid
29
+
command is given.
30
+
31
+
### Easy organizing of Tasks
32
+
Duke has several features that help in organizing your tasks such as Listing out all tasks, Marking Tasks as Done,
33
+
Searching for Tasks by Keyword and Listing out Upcoming Tasks.
34
+
35
+
## Usage
12
36
Note: The parameters for date are to be in `yyyy-MM-dd HH:mm` format. The index of tasks is such that "1" represents the
0 commit comments