Skip to content
Open
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
556af3f
Add Gradle support
May 24, 2020
dc082c3
Added level 1- 6, A-Collections
LolfoollorS Aug 25, 2022
cd6befb
Remove Text block literal (Not supported in JDK11)
LolfoollorS Aug 25, 2022
ae43f2c
Add Level 7
LolfoollorS Sep 1, 2022
62afe57
Add Level-8
LolfoollorS Sep 1, 2022
3e2dd5b
Merge branch 'branch-Level-7'
LolfoollorS Sep 1, 2022
5e31a06
Merge branch 'branch-Level-8'
LolfoollorS Sep 1, 2022
3c67594
Update AddFunctionDeadLine.java
LolfoollorS Sep 1, 2022
d98bebb
Merge remote-tracking branch 'origin/add-gradle-support'
LolfoollorS Sep 1, 2022
69f112c
Add A-MoreOOP
LolfoollorS Sep 1, 2022
0677f09
Add packages to all the relevant classes
LolfoollorS Sep 1, 2022
3b3702f
Add A-JUnit: ParserTest, TaskListTest, ToDoTest
LolfoollorS Sep 1, 2022
de8b34e
Add A-Jar
LolfoollorS Sep 1, 2022
189448e
Add JavaDocs for all classes except CleverNotBot.java .
LolfoollorS Sep 1, 2022
ecfcad8
Revert "Add JavaDocs for all classes except CleverNotBot.java ."
LolfoollorS Sep 1, 2022
648ed7e
Add JavaDocs to all non main classes.
LolfoollorS Sep 1, 2022
c418254
Add Coding Standard to code.
LolfoollorS Sep 1, 2022
68f3e8d
Add Level 9
LolfoollorS Sep 1, 2022
2d9aa6d
Merge branch 'branch-A-JavaDoc'
LolfoollorS Sep 1, 2022
48e7f50
Merge branch 'branch-A-CodingStandard'
LolfoollorS Sep 1, 2022
847dd6c
Merge branch 'branch-Level-9'
LolfoollorS Sep 1, 2022
0ea15bf
Update MarkCommand.java
LolfoollorS Sep 1, 2022
48d0376
Add catch for non numeric number after command such as `mark a` `unma…
LolfoollorS Sep 4, 2022
2beda42
Refactored Storage.java
LolfoollorS Sep 8, 2022
0e7cc9f
Add Level-10 Gui
LolfoollorS Sep 18, 2022
2836fea
no message
LolfoollorS Sep 18, 2022
e09f5f9
Add C-Undo for undo personal
LolfoollorS Sep 18, 2022
3b740c3
Add A-UserGuide
LolfoollorS Sep 18, 2022
6de5831
Add HelpWindow.fxml
LolfoollorS Sep 18, 2022
6a9948e
Add UI for Docs
LolfoollorS Sep 18, 2022
8bd2385
Change mainclassname in build.gradle
LolfoollorS Sep 18, 2022
b5898aa
Modify README.md
LolfoollorS Sep 18, 2022
b66666c
Renam UI to Ui.png
LolfoollorS Sep 19, 2022
e974db1
Improve dialog box
LolfoollorS Sep 19, 2022
9928cd0
Update CSS and FXML files
LolfoollorS Sep 19, 2022
c2a27ac
Force Java 11 Compile.
LolfoollorS Sep 25, 2022
2a4775f
Update app scene and Ui.png
LolfoollorS Sep 25, 2022
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ bin/

/text-ui-test/ACTUAL.txt
text-ui-test/EXPECTED-UNIX.TXT
src/main/java/MyFrame.java
src/main/java/clevernotbot/MyFrame.java
51 changes: 51 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}

repositories {
mavenCentral()
}

dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0'
}

test {
useJUnitPlatform()

testLogging {
events "passed", "skipped", "failed"

showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showStandardStreams = false
}
}

application {
mainClassName = "clevernotbot.CleverNotBot"
}

jar {
manifest {
attributes "Main-Class": "clevernotbot.CleverNotBot"
}

from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}

shadowJar {
archiveBaseName = "clevernotbot"
archiveClassifier = null
}

run{
standardInput = System.in
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions 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.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
234 changes: 234 additions & 0 deletions gradlew

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

89 changes: 89 additions & 0 deletions gradlew.bat

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

10 changes: 0 additions & 10 deletions src/main/java/Duke.java

This file was deleted.

Loading