Skip to content

Commit

Permalink
Version 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Aug 30, 2020
1 parent c6d5e82 commit ea0f7bf
Show file tree
Hide file tree
Showing 3 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 @@ -15,8 +15,8 @@ And if you find any bugs feel free to report them (spelling mistakes included :3

## Downloads
_Requires Java 8 or higher_
- [Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v3.1/SkinChecker-v3.1.exe)<br>
- [Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v3.1/SkinChecker-v3.1.jar)
- [Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v3.2/SkinChecker-v3.2.exe)<br>
- [Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v3.2/SkinChecker-v3.2.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 = 'v3.1'//Don't forget SkinChecker.java
version = 'v3.2'//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", "v3.1"));//XXX the version number - don't forget build.gradle
info.add(Util.getVersionLabel("osuSkinChecker", "v3.2"));//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 ea0f7bf

Please sign in to comment.