Skip to content

Commit

Permalink
Increment the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Dec 8, 2019
1 parent 3e65848 commit ec6afce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ And now I'm finally done :D
The program looks like this:<br>
![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.
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. The program also includes an editor for the `skin.ini`.

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.2/SkinChecker-v2.2.exe)<br>
[Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v2.2/SkinChecker-v2.2.jar)
[Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v2.3/SkinChecker-v2.3.exe)<br>
[Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v2.3/SkinChecker-v2.3.jar)

All releases: [releases](https://github.com/RoanH/osuSkinChecker/releases)<br>
GitHub repository: [repository](https://github.com/RoanH/osuSkinChecker)<br>
Expand Down
2 changes: 1 addition & 1 deletion osuSkinChecker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ javadoc{

compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
version = 'v2.2'//Don't forget SkinChecker.java
version = 'v2.3'//Don't forget SkinChecker.java
shadowJar.archiveName = 'SkinChecker-' + project.version + '.jar'

repositories{
Expand Down
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 @@ -398,7 +398,7 @@ public static void buildGUI(){
links.add(wiki);

JPanel info = new JPanel(new GridLayout(2, 1));
info.add(Util.getVersionLabel("osuSkinChecker", "v2.2"));//XXX the version number - don't forget build.gradle
info.add(Util.getVersionLabel("osuSkinChecker", "v2.3"));//XXX the version number - don't forget build.gradle
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);
JLabel git = new JLabel("<html>- <font color=blue><u>GitHub</u></font></html>", SwingConstants.LEFT);
Expand Down

0 comments on commit ec6afce

Please sign in to comment.