Skip to content

Commit

Permalink
Version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Dec 1, 2018
1 parent 004fcf1 commit db41330
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Well I hope some of you find this program useful :)<br>
And if you find any bugs feel free to report them (spelling mistakes included :3).

## Downloads (Java 8 required, should run on any OS)<br>
[Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v2.0/SkinChecker-v2.0.exe)<br>
[Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v2.0/SkinChecker-v2.0.jar)
[Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v2.1/SkinChecker-v2.1.exe)<br>
[Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v2.1/SkinChecker-v2.1.jar)

All releases: [releases](https://github.com/RoanH/osuSkinChecker/releases)<br>
GitHub repository: [repository](https://github.com/RoanH/osuSkinChecker]SkinChecker)<br>
Expand Down
4 changes: 2 additions & 2 deletions osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -395,11 +395,11 @@ public static void buildGUI(){
links.add(wiki);

JPanel info = new JPanel(new GridLayout(2, 1));
JLabel ver = new JLabel("<html><center><i>Version: v2.0, latest version: <font color=gray>loading</font></i></center></html>", SwingConstants.CENTER);
JLabel ver = new JLabel("<html><center><i>Version: v2.1, latest version: <font color=gray>loading</font></i></center></html>", SwingConstants.CENTER);
info.add(ver);
new Thread(()->{
String version = checkVersion();//XXX the version number
ver.setText("<html><center><i>Version: v2.0, latest version: " + (version == null ? "unknown :(" : version) + "</i></center></html>");
ver.setText("<html><center><i>Version: v2.1, latest version: " + (version == null ? "unknown :(" : version) + "</i></center></html>");
}, "Version Checker").start();
JPanel linksProgram = new JPanel(new GridLayout(1, 2, -2, 0));
JLabel forum = new JLabel("<html><font color=blue><u>Forums</u></font> -</html>", SwingConstants.RIGHT);
Expand Down

0 comments on commit db41330

Please sign in to comment.