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

[H1410101] iP #555

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
28ad2b8
Add Gradle support
May 24, 2020
ed6d4d2
Bump gradle and lib version
Eclipse-Dominator Aug 5, 2023
afe47af
Feature: greet and farewell
H1410101 Aug 24, 2023
4ccdfbe
Feature: echo until bye
H1410101 Aug 24, 2023
b2749c3
Feature: task types, task doneness, task list, and parser for slash a…
H1410101 Aug 24, 2023
696361d
Feature: textuitesting
H1410101 Aug 24, 2023
cfbfbac
Feature: handled various errors, implemented exceptions for missing a…
H1410101 Aug 24, 2023
1209ca0
Feature: delete
H1410101 Aug 24, 2023
8d970a2
Restructure project (transient)
H1410101 Sep 4, 2023
17a2cc2
Completely restructures
H1410101 Sep 6, 2023
3ef9980
Allow saving of todo list information through serialization
H1410101 Sep 6, 2023
ac0962c
Merge branch 'branch-Level-7'
H1410101 Sep 6, 2023
e2e6f0c
Add support for dates
H1410101 Sep 6, 2023
09eb837
Merge branch 'branch-Level-8'
H1410101 Sep 6, 2023
021f2e1
Rename for clarity and convention
H1410101 Sep 13, 2023
26f5425
Merge remote-tracking branch 'origin/add-gradle-support'
H1410101 Sep 13, 2023
5218357
Verify Gradle and JAR
H1410101 Sep 13, 2023
84540d8
Add JUnit tests and fix minor bugs
H1410101 Sep 13, 2023
347cb97
Add JavaDoc to half of the classes, especially Interfaces
H1410101 Sep 13, 2023
76f3604
Fix all coding standard except JavaDoc
H1410101 Sep 13, 2023
13fa8fb
Add find functionality
H1410101 Sep 13, 2023
493a117
Merge branch 'branch-Level-9'
H1410101 Sep 13, 2023
50839b0
Merge branch 'branch-A-JavaDoc'
H1410101 Sep 13, 2023
901f2c7
Merge branch 'branch-A-CodingStandard'
H1410101 Sep 13, 2023
bb8638f
Refactor for better OOP and style
H1410101 Sep 14, 2023
a40bfab
Refactored for OOP, fixed indexing bug
H1410101 Sep 15, 2023
d305a5a
Add working JavaFX prototype, expecting refactoring and reorganisation
H1410101 Sep 18, 2023
3fd5f4e
Add working JavaFX UI for chatbot
H1410101 Sep 19, 2023
3c32b3c
Merge branch 'branch-A-Varargs'
H1410101 Sep 19, 2023
66ff7aa
Merge branch 'branch-A-CheckStyle'
H1410101 Sep 19, 2023
f91fbe1
Add javafxplugin to build.gradle
H1410101 Sep 19, 2023
7b0e464
Remove irrelevant todos and clean up warnings
H1410101 Sep 19, 2023
6ceecdd
Add update/edit functionality
H1410101 Sep 19, 2023
77825cb
Fix style for checkstyle
H1410101 Sep 19, 2023
f10b024
Fix non-checkstyle code quality
H1410101 Sep 20, 2023
e351a0f
Merge pull request #2 from H1410101/branch-A-Assertions
H1410101 Sep 20, 2023
6e2d091
Merge branch 'master' into branch-A-CodeQuality
H1410101 Sep 20, 2023
0a08fda
Merge pull request #3
H1410101 Sep 20, 2023
7e1f6f6
Make header comments adhere to conventions
H1410101 Sep 20, 2023
030f583
Update GUI, implemented delayed application exit
H1410101 Sep 22, 2023
cb5ae6c
Add UI screenshot, add acknowledgement when task list is empty
H1410101 Sep 22, 2023
f2798ae
Update README.md
H1410101 Sep 22, 2023
9a5badd
Added acknowledgement when unnumbered lists are empty
H1410101 Sep 22, 2023
976c574
Merge remote-tracking branch 'origin/master'
H1410101 Sep 22, 2023
fa5cdf8
Polish UI, including rescaling images, changing padding, etc
H1410101 Sep 22, 2023
4893ea7
Format README.md
H1410101 Sep 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
Binary file added Tasks.txt
Binary file not shown.
70 changes: 70 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'org.openjfx.javafxplugin' version '0.1.0'
}

// Configure the Java compiler options
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << "-Xlint:unchecked"
}

repositories {
mavenCentral()
}

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

String javaFxVersion = '17.0.7'

implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'linux'
}

test {
useJUnitPlatform()

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

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

application {
//mainClass.set("seedu.duke.Duke")
mainClass.set("catbot.CatBotEntrypoint")
}

shadowJar {
archiveBaseName = "catbot"
archiveClassifier = null
dependsOn("distZip", "distTar")
}

run{
standardInput = System.in
}

javafx {
version = "17.0.7"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
Loading