-
Notifications
You must be signed in to change notification settings - Fork 451
[ Hardik Narang ] iP #489
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
Open
naranghardik16
wants to merge
49
commits into
nus-cs2103-AY2122S1:master
Choose a base branch
from
naranghardik16:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[ Hardik Narang ] iP #489
Changes from 29 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
d839859
Add Gradle support
4cfc67b
First commit (Level-1)
naranghardik16 4736ca7
Added Level-2 increment
naranghardik16 cfd5b25
Added Level-3 increment
naranghardik16 bd6934e
Added Level-4 Increment
naranghardik16 5ef0281
Added Exception handling
naranghardik16 1d94770
Added Level-6 increment
naranghardik16 b53bd2b
automate Ui testing
naranghardik16 702a6ac
Made minor changes (worked on organization)
naranghardik16 7ea4cc3
Level-7
naranghardik16 c13f776
Made minor changes
naranghardik16 17dcb8d
Revert "Level-7"
naranghardik16 cce678c
Made minor changes
naranghardik16 985e487
Level-8
naranghardik16 cb0f6ce
Resolving conflicts
naranghardik16 9a37325
Resolving conflict
naranghardik16 044eb74
Merge branch 'branch-Level-7'
naranghardik16 9c1a2a6
Merge branch 'branch-Level-8'
naranghardik16 9d62a81
A-MoreOOP
naranghardik16 58fff1d
Made minor changes
naranghardik16 8715041
Merge branch 'add-gradle-support'
naranghardik16 43765c6
Added support for testing
naranghardik16 21bd54f
Added JavaDoc
naranghardik16 d30698e
Added JavaDoc
naranghardik16 ee67ca5
Added CodingStandard
naranghardik16 d9c02fc
Added Level-9
naranghardik16 a3b3d47
Merge branch 'branch-A-CodingStandard'
naranghardik16 23ef5fb
Merge branch 'branch-Level-9'
naranghardik16 cd74b28
Merged all 3 branches and made minor changes
naranghardik16 b5b092f
Added GUI capabilities
naranghardik16 44a8d27
Merge branch 'branch-Level-10'
naranghardik16 d602943
Improve Code Quality
naranghardik16 a8ec3fc
Improve Code Quality
naranghardik16 b144d14
Improve formatting
naranghardik16 06559aa
Add Assertions
naranghardik16 faa775f
Merge pull request #3 from naranghardik16/branch-A-CodeQuality
naranghardik16 31b0bd6
Merge branch 'branch-A-Assertions'
naranghardik16 4349b1a
Merge pull request #2 from naranghardik16/branch-A-Assertions
naranghardik16 34dfcea
Add Extension C-Priority
naranghardik16 33cc82f
Merge branch 'branch-C-Priority'
naranghardik16 d05d812
Merge pull request #4 from naranghardik16/branch-C-Priority
naranghardik16 8b53d83
Merge branch 'master' of https://github.com/naranghardik16/ip
naranghardik16 ad63b5c
Make changes to text file
naranghardik16 a79fe1b
Add representative screenshot
naranghardik16 65614d9
Add User Guide
naranghardik16 4cfef5b
Set theme jekyll-theme-minimal
naranghardik16 f91b546
Set theme jekyll-theme-cayman
naranghardik16 fa07ae8
Add UserGuide
naranghardik16 17b437e
Set theme jekyll-theme-cayman
naranghardik16 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| plugins { | ||
| id 'java' | ||
| id 'application' | ||
| id 'checkstyle' | ||
| 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 = "seedu.duke.Duke" | ||
| } | ||
|
|
||
| shadowJar { | ||
| archiveBaseName = "duke" | ||
| archiveClassifier = null | ||
| } | ||
|
|
||
| checkstyle { | ||
| toolVersion = '8.29' | ||
| } | ||
|
|
||
| run{ | ||
| standardInput = System.in | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| T | 1 | new | ||
| T | 0 | fly | ||
| T | 1 | new | ||
| T | 0 | return book | ||
| T | 0 | remove book | ||
| T | 1 | enjoy food | ||
| E | 1 | something | 02/08/2021 1600 | ||
| D | 1 | eat | 02/08/2021 1600 | ||
| T | 0 | running | ||
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-6.2-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should the save files be uploaded to github?
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.
You should leave duke.txt in the .gitignore file.