Skip to content

Commit

Permalink
Updated to 1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zodsmar committed Jan 25, 2020
1 parent 3714b38 commit 6915101
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId>
<version>1.7.21</version>
<version>1.7.25</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/sassa/gui/GUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ public class GUI {
private static int searchQuadrantWidth = 512;
private static int searchQuadrantHeight = 512;
private static int maximumMatchingWorldsCount = 10;
public static String minecraftVersion = Version.V1_15_1;
public static String minecraftVersion = Version.V1_15_2;
String[] versions = {
/*1.15.x*/ Version.V1_15_1, Version.V1_15,
/*1.15.x*/ Version.V1_15_2, Version.V1_15_1, Version.V1_15,
/*1.14.x*/ Version.V1_14_4, Version.V1_14_3, Version.V1_14,
/*1.13.x*/ Version.V1_13_2, Version.V1_13_1, Version.V1_13,
/*1.12.x*/ Version.V1_12_2, Version.V1_12,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sassa/main/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Main {
public static final int FRAME_SCROLL_BAR_WIDTH = (BACK_FRAME_WIDTH - CONSOLE_WIDTH) - 18;
public static final int FRAME_SCROLL_BAR_HEIGHT = BACK_FRAME_HEIGHT - 93;

public static final String VERSION = "v0.4.3";
public static final String VERSION = "v0.4.4";
public static boolean DEV_MODE = false;
/*
Quick test of git connection through VS Code
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/sassa/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
public class Version {

public static final String V9_99_99 = "9.99.9"; // Used to block out unsupported biomes/structures
public static final String V1_15_2 = "1.15.2";
public static final String V1_15_1 = "1.15.1";
public static final String V1_15 = "1.15";
public static final String V1_14_4 = "1.14.4";
Expand Down Expand Up @@ -35,6 +36,7 @@ public class Version {

public static void registerSupportedVersions() {
versions.put(V9_99_99, 99999);
versions.put(V1_15_2, 1502);
versions.put(V1_15_1, 1501);
versions.put(V1_15, 1500);
versions.put(V1_14_4, 1404);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/sassa/metadata.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ sassa.build.filename=sassa
sassa.version.prefix=0
sassa.version.major=0
sassa.version.minor=4
sassa.version.update=3
sassa.version.update=4

sassa.version.preReleaseSuffix=

0 comments on commit 6915101

Please sign in to comment.