From 7851f79b45d2a38d5d7adc7d67ed1ca55d2462d3 Mon Sep 17 00:00:00 2001 From: Roan Date: Tue, 1 Oct 2019 17:28:57 +0200 Subject: [PATCH] Increment the version number --- README.md | 50 +++++++++---------- .../me/roan/osuskinchecker/SkinChecker.java | 4 +- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index c85de81..06f92f4 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,25 @@ -# osu! Skin Checker -Simple program to check if all the elements for an osu! skin are present. - -# Forum post -So a little while ago I was asked to write a program to show what files were missing in a skin.
-And now I'm finally done :D - -The program looks like this:
-![GUI](https://i.imgur.com/B4HYyyD.png) - -It is a simple program that shows you which elements of your skin are skinned and which elements are not. It also shows if there's an SD/HD image in the skin for each element or not. For files that can be animated it also shows whether or not they are animated and if they are how many frames the animation consists of. Lastly, it also reports a missing skin.ini file and will read and use custom paths from the skin.ini if they exist. - -Well I hope some of you find this program useful :)
-And if you find any bugs feel free to report them (spelling mistakes included :3). - -## Downloads (Java 8 required, should run on any OS)
-[Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v2.1/SkinChecker-v2.1.exe)
-[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)
-GitHub repository: [repository](https://github.com/RoanH/osuSkinChecker)
-Forum post: [post](https://osu.ppy.sh/community/forums/topics/617168) - -## History -Project development started: 19th of June, 2017. +# osu! Skin Checker +Simple program to check if all the elements for an osu! skin are present. + +# Forum post +So a little while ago I was asked to write a program to show what files were missing in a skin.
+And now I'm finally done :D + +The program looks like this:
+![GUI](https://i.imgur.com/B4HYyyD.png) + +It is a simple program that shows you which elements of your skin are skinned and which elements are not. It also shows if there's an SD/HD image in the skin for each element or not. For files that can be animated it also shows whether or not they are animated and if they are how many frames the animation consists of. Lastly, it also reports a missing skin.ini file and will read and use custom paths from the skin.ini if they exist. + +Well I hope some of you find this program useful :)
+And if you find any bugs feel free to report them (spelling mistakes included :3). + +## Downloads (Java 8 required, should run on any OS)
+[Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v2.2/SkinChecker-v2.2.exe)
+[Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v2.2/SkinChecker-v2.2.jar) + +All releases: [releases](https://github.com/RoanH/osuSkinChecker/releases)
+GitHub repository: [repository](https://github.com/RoanH/osuSkinChecker)
+Forum post: [post](https://osu.ppy.sh/community/forums/topics/617168) + +## History +Project development started: 19th of June, 2017. diff --git a/osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java b/osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java index e914c2e..5f8c4a3 100644 --- a/osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java +++ b/osuSkinChecker/src/me/roan/osuskinchecker/SkinChecker.java @@ -395,11 +395,11 @@ public static void buildGUI(){ links.add(wiki); JPanel info = new JPanel(new GridLayout(2, 1)); - JLabel ver = new JLabel("
Version: v2.1, latest version: loading
", SwingConstants.CENTER); + JLabel ver = new JLabel("
Version: v2.2, latest version: loading
", SwingConstants.CENTER); info.add(ver); new Thread(()->{ String version = checkVersion();//XXX the version number - ver.setText("
Version: v2.1, latest version: " + (version == null ? "unknown :(" : version) + "
"); + ver.setText("
Version: v2.2, latest version: " + (version == null ? "unknown :(" : version) + "
"); }, "Version Checker").start(); JPanel linksProgram = new JPanel(new GridLayout(1, 2, -2, 0)); JLabel forum = new JLabel("Forums -", SwingConstants.RIGHT);