Skip to content

Commit dd0eb05

Browse files
committed
Version bump
1 parent 5949c4e commit dd0eb05

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
Project Name: **LabConnect**
1818

19-
![version](https://img.shields.io/badge/version-0.0.2-yellow?style=flat-square) [![license](https://img.shields.io/github/license/cs102-project/LabConnect?style=flat-square)](https://github.com/cs102-project/LabConnect/blob/master/LICENSE)
19+
![version](https://img.shields.io/badge/version-0.1.0-yellow?style=flat-square) [![license](https://img.shields.io/github/license/cs102-project/LabConnect?style=flat-square)](https://github.com/cs102-project/LabConnect/blob/master/LICENSE)
2020
[![issues](https://img.shields.io/github/issues/cs102-project/LabConnect?style=flat-square)](https://github.com/cs102-project/LabConnect/issues)
2121

2222
### List of features:

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ echo "You're all set!"
4949
echo "Now visit localhost:8080 from your browser of choice"
5050
echo
5151
echo "Default credentials"
52-
printf "Student:\[email protected]\t\t\tmyPasswd\n"
53-
printf "Instructor:\[email protected]\tverystrongpasswd\n"
54-
printf "TA:\t\[email protected]\t3venStr0ngerpasswd\n"
52+
printf "Student:\[email protected]\t\t\tAa123456\n"
53+
printf "Instructor:\[email protected]\tAa123456\n"
54+
printf "TA:\t\[email protected]\t\Aa123456n"
5555
echo "***************************************"
5656
echo
5757
echo "Once you are done with the demo, run:"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>me.labconnect</groupId>
1414
<artifactId>webapp</artifactId>
15-
<version>0.0.2-SNAPSHOT</version>
15+
<version>0.1.0</version>
1616
<name>webapp</name>
1717
<description>LabConnect Webapp</description>
1818

src/main/java/me/labconnect/webapp/controller/httpmodels/NewAssignment.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ public class NewAssignment {
3434
private MultipartFile instructionsFile;
3535
private MultipartFile exampleImplementation;
3636
private MultipartFile testerClass;
37-
37+
3838
/**
3939
* Default constructor for {@code NewAssignment} takes the required information for an assignment
4040
*
4141
* @param assignmentTitle The title of assignment
4242
* @param shortDescription A short description for the assignment
4343
* @param homeworkType Type of the homework
4444
* @param dueDate Due date of the assignment
45-
* @param courseName The course name which the assignment belongs to
45+
* @param courseNames The course names which the assignment belongs to
4646
* @param sections Section number which the assignment belongs to
4747
* @param maxGrade Maximum possible grade for the assignment
4848
* @param maxAttempts Maximum possible attempt count for the assignment
@@ -52,8 +52,9 @@ public class NewAssignment {
5252
* @param forbiddenStatements Statements not allowed for use in the assignment
5353
*/
5454
public NewAssignment(String assignmentTitle, String shortDescription, String homeworkType,
55-
Date dueDate, String[] courseNames, int[] sections, int maxGrade, int maxAttempts, List<Tests> styleTests, String unitTestName,
56-
Long unitTestTimeLimit, ArrayList<String> forbiddenStatements,
55+
Date dueDate, String[] courseNames, int[] sections, int maxGrade, int maxAttempts, List<Tests> styleTests,
56+
String unitTestName,
57+
Long unitTestTimeLimit, ArrayList<String> forbiddenStatements,
5758
MultipartFile instructionsFile, MultipartFile exampleImplementation, MultipartFile testerClass) {
5859
this.assignmentTitle = assignmentTitle;
5960
this.shortDescription = shortDescription;
@@ -172,17 +173,17 @@ public Long getUnitTestTimeLimit() {
172173
public ArrayList<String> getForbiddenStatements() {
173174
return forbiddenStatements;
174175
}
175-
176+
176177
public MultipartFile getExampleImplementation() {
177178
return exampleImplementation;
178179
}
179-
180+
180181
public MultipartFile getInstructionsFile() {
181182
return instructionsFile;
182183
}
183-
184+
184185
public MultipartFile getTesterClass() {
185186
return testerClass;
186187
}
187-
188+
188189
}

src/main/java/me/labconnect/webapp/models/data/services/AssignmentService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ private void moveInstructionsFile(Assignment assignment, Path instructionPath)
112112
* @param institution The institution offering the course this assignment is a part of
113113
* @param instructionFile The instruction file
114114
* @param dueDate The due date for the assignment
115-
* @param sections The sections this assignment is for
116-
* @param courseName The name of the course this assignment is a part of
115+
* @param courses The course this assignment is a part of
117116
* @param homeworkType The type of the assignment
118117
* @param maxGrade The maximum grade for this assignment
119118
* @param maxAttempts The maximum attempts allowed for this assignment

0 commit comments

Comments
 (0)