Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Gavzzz/ip
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavzzz committed Sep 21, 2022
2 parents 8c4e65a + 4187f78 commit 70e51df
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 15 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,24 @@ DukeProMax allows you to store your daily tasks so you can always give your 100%
- USER Friendly
- SUPER Fast to use

# SUS for short
# SUS for short :+1:

1. Download it from [here](https://github.com/Gavzzz/ip)
2. Double-click it.
3. Chat with it to add you tasks
4. Let it manage your tasks for you

It is absolutely

The best part? It is absolutely

# FREE!!

Features include but not limited to

1. Managing tasks
2. Managing events
3. Finding tasks
- [x] Managing tasks
- [x] Managing events
- [x] Finding tasks
- [ ] More extensions coming soon


So what are you waiting for???
Expand Down
126 changes: 116 additions & 10 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,135 @@
# User Guide
# User Guide for DukeMaxPro

## Features

### Feature-ABC
### Add Tasks

Description of the feature.
Add up to 3 different types of tasks!

### Feature-XYZ
[todo]

A todo task denoted by [T]

input format: "todo" + task description

[deadline]

A deadline task denoted by [D]

A deadline task with a deadline to be input, denoted by [D]

Input format: "deadline" + task description + "/by" + deadline

[Event]

An event task with a time of event, denoted by [E]

Input format: "event" + task description + "/at" + time of event

### Mark / Unmark tasks as done

Marks tasks as done with an "X" or undone without an "X" and with an empty box [ ]
to keep track of task completion.

### View task list

Displays the entire task list

### Detect duplicates

Detects duplicate tasks inside the task lists and alerts the user about which
task is duplicated and how many tasks are duplicated

Description of the feature.

## Usage

### `Keyword` - Describe action
### `list` - Displays current task list


Example of usage:

`list`

Expected outcome:

```
[T][X] Borrow book
[D][ ] Return Book (by: Monday 2pm)
[E][ ] Meeting (at: Monday 2pm-4pm)
```

### `todo` - Adds a todo task to the task list

Describe the action and its outcome.

Example of usage:

`keyword (optional arguments)`
`todo`


Expected outcome:

Description of the outcome.
```
[T][X] Borrow book
```

### `deadline` - Adds a deadline task to the task list


Example of usage:

`deadline`


Expected outcome:

```
expected output
[D][ ] Return Book (by: Monday 2pm)
```

### `event` - Adds a event task to the task list


Example of usage:

`event`


Expected outcome:

```
[E][ ] Meeting (at: Monday 2pm-4pm)
```

### `mark` - Marks a task as done in the task list


Example of usage:

`mark 1`


Expected outcome:

```
[E][X] Meeting (at: Monday 2pm-4pm)
```

### `unmark` - Unarks a task as not done in the task list


Example of usage:

`unmark 1`


Expected outcome:

```
[E][ ] Meeting (at: Monday 2pm-4pm)
```






0 comments on commit 70e51df

Please sign in to comment.