-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add logics for editing and moving tasks, Update UI for tasks and Implement Import/Export #116
Conversation
jiayushe
commented
Oct 27, 2019
•
edited
Loading
edited
- Implement EditTaskCommand (Fix As a user, I want to modify the due date of tasks #114)
- Implement MoveTaskCommand (Fix As a user, I want to move task from one plan to another #115)
- Implement UI for Task (Fix As a user, I want to view my current progress of tasks within each plan #104)
- Implement ExportCommand and ImportCommand (Fix As a user, I want to import and export my records #8)
- Catch duplicate tasks when adding tasks or moving tasks to plans
- Prettify command text
2a9f094
to
447ab3b
Compare
64bbabc
to
26227ae
Compare
src/main/java/seedu/algobase/logic/commands/MoveTaskCommand.java
Outdated
Show resolved
Hide resolved
src/main/java/seedu/algobase/logic/parser/ImportCommandParser.java
Outdated
Show resolved
Hide resolved
src/main/java/seedu/algobase/logic/parser/MoveTaskCommandParser.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't look into the UI part, otherwise looks good to me.
import seedu.algobase.storage.JsonSerializableAlgoBase; | ||
|
||
/** | ||
* Imports AlgoBase from specified location. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it true that by importing a save file AlgoBase will essentially overwrite the save file at its default location?
Is it better if we change the default save file path at the same time so that the old save file won't be overwritten?