Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Dec 24, 2017
1 parent 3769807 commit 381f9d0
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 @@ -791,11 +791,11 @@ public Component getListCellRendererComponent(JList<?> list, Object value, int i
save.setEnabled(true);
}
});
JLabel ver = new JLabel("<html><center><i>Version: v7.1, latest version: <font color=gray>loading</font><br>"
JLabel ver = new JLabel("<html><center><i>Version: v7.2, 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: v7.1, latest version: " + (version == null ? "unknown :(" : version) + "<br>"
ver.setText("<html><center><i>Version: v7.2, 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 381f9d0

Please sign in to comment.