-
Notifications
You must be signed in to change notification settings - Fork 252
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
Added Snooze function #69
base: master
Are you sure you want to change the base?
Conversation
Hi @benitokun123, your pull request title is not as specified. Please rectify the PR title to match the following requirement. The PR name should be in the format of
Please follow the above format strictly and edit your title for reprocessing. Note: this comment is posted by a bot. If you believe this is done in error, please create an issue at nus-se-pr-bot and add a link to this PR. |
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.
duplicate pr
private static final String outOfBounds_Text = "Index is out of Bounds!"; | ||
private static final String anomaly_Text = "Anomaly Detected"; | ||
private static final String emptyList_Text = "List is empty"; | ||
private static final String timeClash_Text = "Time Clash Detected"; | ||
private static final String wrongFormat_Text = "Wrong Format Detected"; | ||
private static final String wrongPriority_Text = "You've entered wrong format of priority"; | ||
private static final String subTask_Text = "Meetings do not support Subtasks"; | ||
public static final String wrongTaskType_Text = "Only meeting or assignment tag are accepted"; | ||
public static final String emptyDescription_Text = "You haven't included the description of you task"; | ||
public static final String emptyDate_Text = "You haven't included the date of your task"; | ||
public static final String emptyTaskType_Text = "You haven't specified the type of your task: assignment or meeting"; | ||
public static final String writeError_Text = "Error in writing file, cancelling write process..."; | ||
public static final String wrongIndexFormat_Text = "The index you've enter is in the wrong format"; | ||
public static final String wrongTimeFormat_Text = "You've entered an invalid time format"; |
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.
use cap for constants
Added sort modes
Added comments for sorting function
add function to update tasks
update my code
add function to create and write log files
add logs folder
add auto generate logs folder
update cide base
added tests
� Conflicts: � src/main/java/Model_Classes/Task.java
fix index out of bound error for reopen command
edited the help functions, added range based rescheduling
bugfixes on logic and ui
Reordered help list to tally with quickstart guide in UG
style enforcement, bug fix on CheckAnomaly
improved accuracy of descriptions in help
update my code
* Remove instanceof from ReminderCommand * Updates to ReminderCommand V1.0 * Sorts reminders in ascending order * Includes Event as part of reminder display * Merges with upstream * Changes to Indent Case * Changes to switch case alignment * Includes history log V1.0 * Includes history log V1.1
No description provided.