Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
69 commits
Select commit Hold shift + click to select a range
d839859
Add Gradle support
May 24, 2020
8d48ae0
added user echo
ovidharshini Jan 20, 2022
a71e87b
Store input list
ovidharshini Jan 25, 2022
3f61a7f
Represent task as class
ovidharshini Jan 25, 2022
177c694
Add marking for tasks
ovidharshini Jan 25, 2022
0438b9b
Add todo, deadline, event tasks
ovidharshini Jan 26, 2022
f2f611d
Add files for I/O redirection testing
ovidharshini Jan 26, 2022
fa10811
Add input sanitization
ovidharshini Jan 26, 2022
21a974e
Add delete feature for list
ovidharshini Jan 26, 2022
6fed456
Add save task feature
ovidharshini Jan 28, 2022
0409484
Add date, time recognition
ovidharshini Jan 28, 2022
c642af9
Merge branch 'branch-Level-7'
ovidharshini Jan 28, 2022
ce8a662
Merge branch 'branch-Level-8'
ovidharshini Jan 28, 2022
3b49e3e
Refactor to use more OOP-based code
ovidharshini Jan 31, 2022
3660e1d
Add packages
ovidharshini Jan 31, 2022
9946873
Add JUnit tests
ovidharshini Jan 31, 2022
5aad65b
Apply Java coding standards
ovidharshini Feb 1, 2022
769a988
Add keyword search command
ovidharshini Feb 1, 2022
b3aa7d8
Merge branch 'branch-Level-9'
ovidharshini Feb 1, 2022
924705b
Resolve merge conflict in import packages
ovidharshini Feb 1, 2022
5f5dd50
Resolve merge conflict
ovidharshini Feb 1, 2022
53505d2
Add JavaDoc comments
ovidharshini Feb 1, 2022
69cbb4b
Resolve merge conflict
ovidharshini Feb 1, 2022
529f480
Add comments for search functionality
ovidharshini Feb 1, 2022
b295aff
Resolve coding standard violations
ovidharshini Feb 10, 2022
e36ebcc
Merge remote-tracking branch 'origin/add-gradle-support' into HEAD
ovidharshini Feb 10, 2022
ffddffd
Add gradle support
ovidharshini Feb 10, 2022
6b35610
Resolve checkstyle warnings
ovidharshini Feb 10, 2022
16ca7b6
Delete redundant code
ovidharshini Feb 11, 2022
5860071
Add GUI
ovidharshini Feb 18, 2022
7ae1137
Merge branch 'branch-Level-10'
ovidharshini Feb 18, 2022
116bf2b
Use Java assert feature
ovidharshini Feb 21, 2022
fed8f6a
Improve code quality
ovidharshini Feb 21, 2022
d40a5c4
Merge pull request #3 from ovidharshini/branch-A-CodeQuality
ovidharshini Feb 21, 2022
9156df9
Merge branch 'master' into branch-A-Assertions
ovidharshini Feb 21, 2022
4a0baa9
Merge pull request #2 from ovidharshini/branch-A-Assertions
ovidharshini Feb 21, 2022
bd1716c
Fix bug with assertions
ovidharshini Feb 25, 2022
66c176c
Add DoAfter tasks
ovidharshini Feb 26, 2022
f2811c7
Handle NumberFormatException in input
ovidharshini Feb 26, 2022
e2e208b
Handle assertion edgecase
ovidharshini Feb 26, 2022
0060559
Merge branch 'branch-B-DoAfterTasks'
ovidharshini Feb 26, 2022
13e7025
Decrease font size
ovidharshini Feb 26, 2022
7798267
Fix minor spelling error
ovidharshini Feb 26, 2022
22cb406
Add tick unicode symbol
ovidharshini Feb 26, 2022
5a1a342
Add icon
ovidharshini Feb 26, 2022
a67fb2e
Add representative screenshot
ovidharshini Feb 26, 2022
7ec9d76
Fix date storage bug
ovidharshini Feb 26, 2022
9aabb5f
Add user guide
ovidharshini Feb 26, 2022
47ec326
Set theme jekyll-theme-minimal
ovidharshini Feb 26, 2022
063970e
Set theme jekyll-theme-slate
ovidharshini Feb 26, 2022
197ba6b
Set theme jekyll-theme-slate
ovidharshini Feb 26, 2022
dc40c8b
Set theme jekyll-theme-midnight
ovidharshini Feb 26, 2022
61ee763
Set theme jekyll-theme-slate
ovidharshini Feb 26, 2022
28108d3
Set theme jekyll-theme-time-machine
ovidharshini Feb 26, 2022
a4d416c
Set theme jekyll-theme-cayman
ovidharshini Feb 26, 2022
dd686dc
Set theme jekyll-theme-tactile
ovidharshini Feb 26, 2022
2af586e
Set theme jekyll-theme-hacker
ovidharshini Feb 26, 2022
6cd5b5f
Delete theme
ovidharshini Feb 26, 2022
fc44103
Set markdown processor for gh pages
ovidharshini Feb 26, 2022
cc59e17
Update _config.yml
ovidharshini Feb 26, 2022
00ea1fb
Fix bug with GFMD rendering
ovidharshini Feb 26, 2022
1c79bf6
Change Ui.png capitalization
ovidharshini Feb 26, 2022
8bdaf26
Add Ui.png
ovidharshini Feb 26, 2022
307ce9e
Add Mac, Linux compatibility
ovidharshini Mar 2, 2022
7aae63c
Change minor messages
ovidharshini Mar 2, 2022
cdf341e
Resolve filepath bug, GUI errors
ovidharshini Mar 3, 2022
1c9240d
Add updated Ui.png
ovidharshini Mar 3, 2022
af733da
Add attribution for images
ovidharshini Mar 3, 2022
6048095
Resolve bug with image display
ovidharshini Mar 3, 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
63 changes: 63 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'org.openjfx.javafxplugin' version '0.0.10'
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'

String javaFxVersion = '11'

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 {
mainClassName = "duke.gui.Launcher"
}

shadowJar {
archiveBaseName = "duke"
archiveClassifier = null
}

checkstyle {
toolVersion = '8.29'
}

run{
standardInput = System.in
enableAssertions = true
}
Loading