Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
f60e3ca
20230905test
MrOPPA1 Sep 5, 2023
cd27c60
20230908
MrOPPA1 Sep 8, 2023
018f450
20230908
MrOPPA1 Sep 8, 2023
49bc539
20230908
MrOPPA1 Sep 8, 2023
6d4e190
202309024
MrOPPA1 Sep 23, 2023
cd79d19
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
0c43e0f
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
1f8f1ae
125
MrOPPA1 Sep 27, 2023
3255293
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
9d0d22d
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
a4059f7
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
d6e71ed
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
7f67b5c
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
3bd6d21
Echo
MrOPPA1 Sep 27, 2023
23be039
Echo
MrOPPA1 Sep 27, 2023
ce605c5
Rename, Greet, Exit
MrOPPA1 Sep 27, 2023
e4f66cc
Echo
MrOPPA1 Sep 27, 2023
c77ca4a
Add, List
MrOPPA1 Sep 27, 2023
e658e89
Mark as Done
MrOPPA1 Sep 27, 2023
5268bee
A-CodingStandard
MrOPPA1 Sep 27, 2023
30ccef0
ToDos, Events, Deadlines
MrOPPA1 Sep 27, 2023
b1c2fe2
Automated Text UI Testing
MrOPPA1 Sep 27, 2023
8f7d73b
Improve Code Quality
MrOPPA1 Sep 27, 2023
c1fc0f8
Handle Errors
MrOPPA1 Sep 27, 2023
db6a38c
Organize into Packages
MrOPPA1 Sep 27, 2023
3e6aa37
Delete
MrOPPA1 Sep 27, 2023
af45c22
Delete
MrOPPA1 Sep 27, 2023
b329b1b
Save
MrOPPA1 Sep 27, 2023
00da4d6
Create a JAR File
MrOPPA1 Sep 27, 2023
b1d7200
Use Exceptions to handle errors
MrOPPA1 Sep 28, 2023
9bd9fe3
Use Java Collections classes
MrOPPA1 Sep 28, 2023
d864493
Use More OOP
MrOPPA1 Oct 5, 2023
a33d88a
Dates and Times
MrOPPA1 Oct 5, 2023
6501dd5
Dates and Times
MrOPPA1 Oct 5, 2023
e97ffe2
Find
MrOPPA1 Oct 5, 2023
d05e789
Add JavaDoc comments
MrOPPA1 Oct 5, 2023
011d8a4
Add JavaDoc comments
MrOPPA1 Oct 5, 2023
90099a3
Add JavaDoc comments
MrOPPA1 Oct 5, 2023
be0e495
Find
MrOPPA1 Oct 5, 2023
9fcfb94
Dates and Times
MrOPPA1 Oct 5, 2023
94c28d5
Add JavaDoc comments
MrOPPA1 Oct 5, 2023
60e6cd4
Merge pull request #1 from MrOPPA1/branch-A-JavaDoc
MrOPPA1 Oct 5, 2023
a8a99ad
readme
MrOPPA1 Oct 5, 2023
bf2ddf2
Merge branch 'master' of https://github.com/MrOPPA1/iP
MrOPPA1 Oct 5, 2023
17557c0
User Guide
MrOPPA1 Oct 6, 2023
833c488
User Guide
MrOPPA1 Oct 6, 2023
7358b8e
User Guide
MrOPPA1 Oct 6, 2023
f3380ca
User Guide
MrOPPA1 Oct 6, 2023
f5c0fff
User Guide
MrOPPA1 Oct 6, 2023
a0f083e
User Guide
MrOPPA1 Oct 6, 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
12 changes: 12 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="bin/main" path="src/main/java">
<attributes>
<attribute name="gradle_scope" value="main"/>
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@ bin/

/text-ui-test/ACTUAL.TXT
text-ui-test/EXPECTED-UNIX.TXT

# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
build
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}
35 changes: 35 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
plugins {
id 'java'
}

repositories {
mavenCentral()
}

dependencies {
implementation 'com.google.code.gson:gson:2.10.1'
}

sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
}

jar {
archiveFileName = "ip.jar"
from configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}

from('lib') {
include '*.jar'
}

manifest {
attributes 'Main-Class': 'Duke'
}

}
Loading