Skip to content

Commit

Permalink
Merge branch 'release/5.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
gravit0 committed Jul 18, 2024
2 parents ede9ab2 + 20f713b commit f88c030
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public LaunchServer(LaunchServerDirectories directories, LaunchServerEnv env, La
launcherPack = directories.launcherPackDir;
modulesDir = directories.modules;
launcherModulesDir = directories.launcherModules;
librariesDir = directories.launcherLibrariesDir;
librariesDir = directories.librariesDir;
this.shardId = shardId;
if(!Files.isDirectory(launcherPack)) {
Files.createDirectories(launcherPack);
Expand Down
2 changes: 1 addition & 1 deletion LauncherCore/src/main/java/pro/gravit/utils/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public final class Version implements Comparable<Version> {

public static final int MAJOR = 5;
public static final int MINOR = 6;
public static final int PATCH = 3;
public static final int PATCH = 4;
public static final int BUILD = 1;
public static final Version.Type RELEASE = Type.STABLE;
public final int major;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'org.openjfx.javafxplugin' version '0.1.0' apply false
}
group = 'pro.gravit.launcher'
version = '5.6.3'
version = '5.6.4'

apply from: 'props.gradle'

Expand Down

0 comments on commit f88c030

Please sign in to comment.