Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Nov 9, 2017
1 parent 872865e commit fd95e49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KeysPerSecond/src/me/roan/kps/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -744,11 +744,11 @@ public Component getListCellRendererComponent(JList<?> list, Object value, int i
save.setEnabled(true);
}
});
JLabel ver = new JLabel("<html><center><i>Version: v6.6, latest version: <font color=gray>loading</font><br>"
JLabel ver = new JLabel("<html><center><i>Version: v7.0, latest version: <font color=gray>loading</font><br>"
+ "<u><font color=blue> https://osu.ppy.sh/community/forums/topics/552405 </font></u></i></center></html>", SwingConstants.CENTER);
new Thread(()->{
String version = checkVersion();//XXX the version number
ver.setText("<html><center><i>Version: v6.6, latest version: " + (version == null ? "unknown :(" : version) + "<br>"
ver.setText("<html><center><i>Version: v7.0, latest version: " + (version == null ? "unknown :(" : version) + "<br>"
+ "<u><font color=blue> https://osu.ppy.sh/community/forums/topics/552405 </font></u></i></center></html>");
}, "Version Checker").start();
ver.addMouseListener(new MouseListener(){
Expand Down

0 comments on commit fd95e49

Please sign in to comment.