Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
fix issue #15
  • Loading branch information
RoanH committed Jul 18, 2017
1 parent ec5b420 commit e04a00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void mouseExited(MouseEvent e) {
JPanel lower = new JPanel(new BorderLayout());
lower.add(links, BorderLayout.CENTER);
JPanel version = new JPanel(new GridLayout(2, 1, 0, 4));
version.add(new JLabel("Running version: v1.0"));//XXX version
version.add(new JLabel("Running version: v1.2"));//XXX version
String ver = checkVersion();
version.add(new JLabel("Latest version: " + (ver == null ? "Unknown" : ver)));
version.setBorder(BorderFactory.createTitledBorder("Version"));
Expand Down

0 comments on commit e04a00f

Please sign in to comment.