Skip to content
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

Merge from duke to master #501

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
452bb0b
add welcome msg and bye msg
alextang809 Jan 18, 2023
5a98ecd
add constant HORIZONTAL_LINE
alextang809 Jan 18, 2023
dea4eda
add documentation for while loop
alextang809 Jan 18, 2023
62ed8ba
add documentation for static functions
alextang809 Jan 18, 2023
0fe7424
add static member totalNumberOfTask
alextang809 Jan 18, 2023
c90157a
commment TaskList class, try to modify Task
alextang809 Jan 18, 2023
e0388a9
add method to print TaskList
alextang809 Jan 18, 2023
32b75e3
add constructor with string parameter
alextang809 Jan 19, 2023
438bb2c
add code to increase taskList
alextang809 Jan 19, 2023
8fd56fe
delete TaskList class
alextang809 Jan 19, 2023
20b8324
add isDone
alextang809 Jan 19, 2023
9e885d4
Add mark and unmark
alextang809 Jan 25, 2023
6a41ae0
Add adjustment
alextang809 Jan 26, 2023
ba79540
Change the internal implementation of Mark as Done
alextang809 Feb 5, 2023
fd5d0f9
Updated SSH Key and save changes back to Lv5
alextang809 Feb 13, 2023
ec8f9d9
Update printUpdatedTask, derived classes of Task, which is Todo, Dead…
alextang809 Feb 13, 2023
4f09d05
Update toString
alextang809 Feb 13, 2023
c136f17
Update input.txt
alextang809 Feb 13, 2023
979c1b3
Update Text-ui-Test
alextang809 Feb 13, 2023
8934ce7
Add test
alextang809 Feb 13, 2023
c6f9d87
Add DukeException
alextang809 Feb 13, 2023
364477d
Add instructions
alextang809 Feb 13, 2023
e4d574a
Save, Dates and Time, Packages
alextang809 Apr 19, 2023
e45bae8
Add stream
alextang809 Apr 19, 2023
e76dc75
Change setDone to default
alextang809 Apr 19, 2023
931245c
Add gradle, update Time and Deadline format
alextang809 Apr 22, 2023
89900e5
Add Assertions in Deadline
alextang809 Apr 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id 'java'
}

group 'org.example'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

test {
useJUnitPlatform()
}
1 change: 1 addition & 0 deletions data/tasks.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
T | 0 | CS2103T 05-20
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dukeChatBox/.gradle/7.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added dukeChatBox/.gradle/7.1/fileHashes/fileHashes.lock
Binary file not shown.
Empty file.
Binary file not shown.
2 changes: 2 additions & 0 deletions dukeChatBox/.gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Wed Apr 19 18:51:26 SGT 2023
gradle.version=7.1
Binary file not shown.
Binary file added dukeChatBox/.gradle/checksums/checksums.lock
Binary file not shown.
Empty file.
3 changes: 3 additions & 0 deletions dukeChatBox/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions dukeChatBox/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions dukeChatBox/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions dukeChatBox/.idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dukeChatBox/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dukeChatBox/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions dukeChatBox/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

83 changes: 83 additions & 0 deletions dukeChatBox/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions dukeChatBox/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id 'java'
}

group 'org.example'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

test {
useJUnitPlatform()
}
Binary file added dukeChatBox/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions dukeChatBox/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading