Skip to content

Commit 791a5a3

Browse files
youngjtyoungjt
authored andcommitted
0.4.1 release
1 parent cbc45f1 commit 791a5a3

File tree

5 files changed

+28
-3
lines changed

5 files changed

+28
-3
lines changed

bin/comp110/Storage.class

2 Bytes
Binary file not shown.

src/comp110/Storage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public String get_password(){
6060
}
6161

6262
public String get_availability_csv_filename_from_onyen(String onyen){
63-
return this.m_application_directory + DEFAULT_LOCAL_REPO_FOLDER + "/data/fall-17/staff/" + onyen + ".csv";
63+
return this.m_application_directory + DEFAULT_LOCAL_REPO_FOLDER + "/data/spring-18/staff/" + onyen + ".csv";
6464
}
6565

6666
public String get_schedule_json_folder(){
@@ -76,7 +76,7 @@ public String get_shift_overflow_version_filename(){
7676
}
7777

7878
public String get_path_to_onyen_csv_directory(){
79-
return this.m_application_directory + DEFAULT_LOCAL_REPO_FOLDER + "/data/fall-17/staff/";
79+
return this.m_application_directory + DEFAULT_LOCAL_REPO_FOLDER + "/data/spring-18/staff/";
8080
}
8181

8282
public void get_files(){

src/ui/ScheduleBox.java

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package ui;
2+
3+
import javafx.geometry.Insets;
4+
import javafx.scene.layout.Border;
5+
import javafx.scene.layout.BorderStroke;
6+
import javafx.scene.layout.BorderStrokeStyle;
7+
import javafx.scene.layout.BorderWidths;
8+
import javafx.scene.layout.CornerRadii;
9+
import javafx.scene.paint.Color;
10+
import javafx.scene.text.Text;
11+
import javafx.scene.text.TextFlow;
12+
13+
public class ScheduleBox extends TextFlow {
14+
15+
16+
public ScheduleBox(Text text, boolean isBottom) {
17+
super(text);
18+
if (isBottom) {
19+
this.setBorder(new Border(new BorderStroke(Color.BLACK, Color.BLACK, Color.BLACK, Color.BLACK,
20+
BorderStrokeStyle.NONE, BorderStrokeStyle.NONE, BorderStrokeStyle.SOLID, BorderStrokeStyle.NONE,
21+
CornerRadii.EMPTY, new BorderWidths(0, 0, 5, 0), Insets.EMPTY)));
22+
}
23+
}
24+
25+
}

src/ui/UI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class UI extends Application {
3535
private ScheduleStage _scheduleStage;
3636
private ViewSwapsStage _viewSwapsStage;
3737

38-
private static final String VERSION = "0.4.0";
38+
private static final String VERSION = "0.4.1";
3939

4040

4141
@Override

0 commit comments

Comments
 (0)