[ANY] 5.2.2 stable

This commit is contained in:
Gravita 2021-09-22 11:15:10 +07:00
parent 77b5188b52
commit 3cce0e93f3
3 changed files with 5 additions and 2 deletions

View file

@ -85,6 +85,9 @@ public static void main(String[] args) throws Exception {
logger.warn("LaunchServer signed incorrectly. Status: {}", result.type.name());
}
}
if (JVMHelper.getVersion() < 17) {
logger.warn("LaunchServer will end Java {} support in next release. Please install Java 17 or above", JVMHelper.getVersion());
}
LaunchServerRuntimeConfig runtimeConfig;
LaunchServerConfig config;

View file

@ -8,7 +8,7 @@ public final class Version implements Comparable<Version> {
public static final int MINOR = 2;
public static final int PATCH = 2;
public static final int BUILD = 1;
public static final Version.Type RELEASE = Type.DEV;
public static final Version.Type RELEASE = Type.STABLE;
public final int major;
public final int minor;
public final int patch;

View file

@ -5,7 +5,7 @@
id 'org.openjfx.javafxplugin' version '0.0.10' apply false
}
group = 'pro.gravit.launcher'
version = '5.2.2-SNAPSHOT'
version = '5.2.2'
apply from: 'props.gradle'