Conversation
docs/UserGuide.md
Outdated
| Format: `add NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]...` | ||
| ### Adding a task: `add` `do` `complete` | ||
| #### Adds an event to Mastermind | ||
| Format: `add "TASK", at/TIME, on/DATE [t/TAG...]` |
There was a problem hiding this comment.
In the description you mention event then in the command you use TASK, it's confusing.
docs/UserGuide.md
Outdated
| * `find Dinner` | ||
| Returns `Dinner on 10/10/16 at 1900hrs (Date)`. | ||
| * `find "cs2010 ps10"` | ||
| Returns `CS2010 PS10 on 11 Oct by 1000hrs (Assignment)`. |
There was a problem hiding this comment.
You can mention what those double quotes mean.
docs/UserGuide.md
Outdated
| * `find date` | ||
| Returns `Dinner on 10 Oct at 1900hrs (Date,meals)`. | ||
| * `find "exam,assignment"` | ||
| Returns `CS2010 PS10 on 11 Oct by 1000hrs (Assignment)`. |
There was a problem hiding this comment.
I assume using double quotes here will return any task that has those 2 tags. If so, you need give an explanation and change your return example.
docs/UserGuide.md
Outdated
| Deletes the specified person from the address book. Irreversible.<br> | ||
| * `list`<br> | ||
| `edit 1 Lunch`<br> | ||
| Selects the 2nd task in Mastermind and edit the task to Lunch from Dinner. |
There was a problem hiding this comment.
I don't think you need to mention from Dinner, since nobody knows that.
docs/UserGuide.md
Outdated
| Selects the 2nd task in Mastermind and edit the task to Lunch from Dinner. | ||
| * `find CS2010` <br> | ||
| `edit 1 on/2010`<br> | ||
| Selects the 1st task in the results of the `find` command and edit the date from 1110 to 2010. |
There was a problem hiding this comment.
Similar to above, you don't need to mention from 1110.
docs/UserGuide.md
Outdated
|
|
||
| Example: | ||
| * `undo` | ||
| COMMAND removed. |
There was a problem hiding this comment.
COMMAND removed? Need to find better wording for this. :)
docs/UserGuide.md
Outdated
| The index **must be a positive integer** 1, 2, 3, ... | ||
| Example: | ||
| * `redo` | ||
| COMMAND repeated. |
There was a problem hiding this comment.
COMMAND repeated? Need to find better word for this. :)
docs/UserGuide.md
Outdated
|
|
||
| Example: | ||
| * `clear deadlines` | ||
| All tasks in deadlines are cleared. |
There was a problem hiding this comment.
When viewed, the description is not positioned under the clear deadline.
docs/UserGuide.md
Outdated
|
|
||
| ### Clearing all entries: `clearall` | ||
| Clears all tasks available from Mastermind | ||
| >>>>>>> master |
There was a problem hiding this comment.
Forgot to remove this after resolving conflict, :)
|
Some comments added. Please close the PR after reading comments. Remember to keep a reasonable level of code quality at all time. Code quality is not something you can do later. |
docs/UserGuide.md
Outdated
| #### Adding a person: `add` | ||
| Adds a person to the address book<br> | ||
| Format: `add NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]...` | ||
| ### Adding a task: `add` `do` `complete` |
There was a problem hiding this comment.
can you think of providing just one add command and decide on which type of task it is based on the input parameters?
docs/UserGuide.md
Outdated
| #### Adds an event to Mastermind | ||
| Format: `add "TASK", at/TIME, on/DATE [t/TAG...]` | ||
| #### Adds a task with deadline to Mastermind | ||
| Format: `complete "TASK" by/TIME on/DATE [t/TAG...]` |
There was a problem hiding this comment.
complete in the normal sense means to mark something as completed, no?
docs/UserGuide.md
Outdated
| > The search is case sensitive, the order of the keywords does not matter, only the name is searched, | ||
| and persons matching at least one keyword will be returned (i.e. `OR` search). | ||
| >* At least one optional argument is required. | ||
| >* Can edit only one of the field for the task. |
There was a problem hiding this comment.
this seems to be an unnecessary limitation, don't you think so?
docs/UserGuide.md
Outdated
| Format: `find KEYWORD [MORE_KEYWORDS]` | ||
| ### Editing a task : `edit` | ||
| Edits the task identified by the index number used in the last task listing. | ||
| Format: `edit INDEX [TASK] [at/TIME] [on/DATE] [t/TAGS...]` |
There was a problem hiding this comment.
you have three commands for adding a task, each of different type. however, edit is just one.
does edit handle all three types of tasks? if yes, why not add do the same ;-)
docs/UserGuide.md
Outdated
| Format: `find KEYWORD [MORE_KEYWORDS]` | ||
| ### Editing a task : `edit` | ||
| Edits the task identified by the index number used in the last task listing. | ||
| Format: `edit INDEX [TASK] [at/TIME] [on/DATE] [t/TAGS...]` |
There was a problem hiding this comment.
if i add a floating task, can I edit it to include a start and/or end time? i.e. convert from floating task to deadline or event?
docs/UserGuide.md
Outdated
| Selects the 2nd task in Mastermind and edit the task to Lunch from Dinner. | ||
| * `find CS2010` <br> | ||
| `edit 1 on/2010`<br> | ||
| Selects the 1st task in the results of the `find` command and edit the date from 1110 to 2010. |
There was a problem hiding this comment.
errr.. i thought 1110 is time rather than date!
docs/UserGuide.md
Outdated
| #### Adding a person: `add` | ||
| Adds a person to the address book<br> | ||
| Format: `add NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]...` | ||
| ### Adding a task: `add` `do` `complete` |
There was a problem hiding this comment.
you need to specify somewhere, the date and time formats you support in the application.
Updated Memory Storage test
Updated storage memory test
- TaskBuilder and AddCommandBuilder now provides a systematic and safe way to create respective objects. - Refactor Parser to improve SLAP on prepareAdd - All Command object now inherits the ability to raise an event to update the last action row in the UI
…mand Refactoring. Added TaskBuilder and AddCommandBuilder.
add ImportCommand
- Added header comments on non-trivial methods.
…feedback Refactor/issue 168 feedback
# Conflicts: # src/main/java/harmony/mastermind/model/ModelManager.java # src/main/java/harmony/mastermind/ui/MainWindow.java
Relocate command test
# Resolved Conflicts: # src/main/java/harmony/mastermind/logic/commands/MarkCommand.java # src/main/java/harmony/mastermind/logic/commands/UnmarkCommand.java # src/main/java/harmony/mastermind/model/ModelManager.java # src/main/java/harmony/mastermind/ui/MainWindow.java
add test for findtag and upcoming
Test_parsersearch
Added manual testing step.
…ing_authors_Hui_Qi Refactoring and adding authors hui qi
…ments editted comments
tagging and comments
update images
No description provided.