Skip to content

Commit

Permalink
Adjust splash screen to acknowledge community contribution.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpavlik committed Mar 1, 2019
1 parent b28aa59 commit 6126d6c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions VUE2/src/main/java/tufts/vue/SplashScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,18 @@ private void createSplash() {
splashProp = "splashScreenNoTransparency";
ImageIcon icon = new ImageIcon(VueResources.getURL(splashProp)) {
public void paintIcon(Component c, Graphics g, int x, int y) {
Calendar calendar = new GregorianCalendar();
super.paintIcon(c,g,x,y);
g.setColor(charcoal);
g.setFont(new Font("Verdana", Font.PLAIN, 11));
g.drawString(VueResources.getString("splashscreen.title"),172,165);
g.drawString(VueResources.getString("splashscreen.developedby"),202,185);
g.drawString((char)169+" "+VueResources.getString("vue.build.date")+" Tufts University", 240,205);
g.drawString("Version "+VueResources.getString("vue.version"),95,215);

final int leftX = 100;
final int topY = 190;
final int lineSpacing = 15;
g.drawString(VueResources.getString("splashscreen.developedby"), leftX, topY);
g.drawString((char) 169 + " " + VueResources.getString("vue.build.date")
+ " Tufts University and Contributors", leftX, topY + lineSpacing);
g.drawString("Version " + VueResources.getString("vue.version"), leftX , topY + 2 * lineSpacing);

}
};
Expand Down
2 changes: 1 addition & 1 deletion VUE2/src/main/resources/tufts/vue/VueResources.properties
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ button.resetallstyle.label=Reset All Slide Styles

#SplashScreen
splashscreen.title=VISUAL UNDERSTANDING ENVIRONMENT
splashscreen.developedby=Developed by Academic Technology
splashscreen.developedby=Developed by Academic Technology and the Community

#SyncDialog
jbutton.nodetoslide.label=from node to slide
Expand Down

0 comments on commit 6126d6c

Please sign in to comment.