diff --git a/README.md b/README.md
index d403ed3..e73148c 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ So a little while ago I was asked to write a program to show what files were mis
And now I'm finally done :D
The program looks like this:
-![GUI](https://i.imgur.com/B4HYyyD.png)
+![GUI](https://i.imgur.com/gyABSvL.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. The program also includes an editor for the `skin.ini`.
@@ -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.3/SkinChecker-v3.3.exe)
-- [Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v3.3/SkinChecker-v3.3.jar)
+- [Windows executable](https://github.com/RoanH/osuSkinChecker/releases/download/v3.4/SkinChecker-v3.4.exe)
+- [Runnable Java Archive](https://github.com/RoanH/osuSkinChecker/releases/download/v3.4/SkinChecker-v3.4.jar)
All releases: [releases](https://github.com/RoanH/osuSkinChecker/releases)
GitHub repository: [repository](https://github.com/RoanH/osuSkinChecker)
diff --git a/osuSkinChecker/build.gradle b/osuSkinChecker/build.gradle
index 220659e..68ffeff 100644
--- a/osuSkinChecker/build.gradle
+++ b/osuSkinChecker/build.gradle
@@ -23,7 +23,7 @@ javadoc{
compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
-version = 'v3.3'//Don't forget SkinChecker.java
+version = 'v3.4'//Don't forget SkinChecker.java
shadowJar.archiveName = 'SkinChecker-' + project.version + '.jar'
repositories{
diff --git a/osuSkinChecker/src/dev/roanh/osuskinchecker/SkinChecker.java b/osuSkinChecker/src/dev/roanh/osuskinchecker/SkinChecker.java
index 53b6e8e..9fc6d4e 100644
--- a/osuSkinChecker/src/dev/roanh/osuskinchecker/SkinChecker.java
+++ b/osuSkinChecker/src/dev/roanh/osuskinchecker/SkinChecker.java
@@ -402,7 +402,7 @@ public static void buildGUI(){
links.add(tutorial);
JPanel info = new JPanel(new GridLayout(2, 1));
- info.add(Util.getVersionLabel("osuSkinChecker", "v3.3"));//XXX the version number - don't forget build.gradle
+ info.add(Util.getVersionLabel("osuSkinChecker", "v3.4"));//XXX the version number - don't forget build.gradle
JPanel linksProgram = new JPanel(new GridLayout(1, 2, -2, 0));
JLabel forum = new JLabel("Forums -", SwingConstants.RIGHT);
JLabel git = new JLabel("- GitHub", SwingConstants.LEFT);