Skip to content

Commit 7fd28bd

Browse files
author
IMS212
committed
Sodium 0.3.4, Iris 1.1.5
1 parent dd24af9 commit 7fd28bd

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8
88
targetCompatibility = JavaVersion.VERSION_1_8
99

1010
archivesBaseName = project.archives_base_name
11-
version = "${project.mod_version}${getVersionMetadata()}"
11+
version = "${project.mod_version}"
1212
group = project.maven_group
1313

1414
loom {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ loader_version=0.12.12
1212
# If the Modrinth maven is unavailable or Sodium is not available for whatever reason,
1313
# you can set this to false to build a copy of the mod without Sodium compatibility included.
1414
sodium_compatibility=true
15-
sodium_version=mc1.17.1-0.3.3
15+
sodium_version=mc1.17.1-0.3.4
1616

1717
# Mod Properties
1818
maven_group=net.coderbot.iris_mc1_17
1919
archives_base_name=iris-mc1.17
2020

21-
mod_version=1.1.4
21+
mod_version=1.1.5

src/main/java/net/coderbot/iris/compat/sodium/SodiumVersionCheck.java

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@
55
public class SodiumVersionCheck {
66
// The allowed versions of Sodium for use with Iris
77
private static final ImmutableList<AllowedSodiumVersion> ALLOWED_SODIUM_VERSIONS = ImmutableList.of(
8-
// Official 0.3.3
9-
AllowedSodiumVersion.exact("0.3.3+build.8"),
8+
// Official 0.3.4
9+
AllowedSodiumVersion.exact("0.3.4+build.13"),
1010

11-
// ReplayMod's existing compatible forked 0.3.3 version
12-
AllowedSodiumVersion.prefix("0.3.3+rev.14a0485"),
13-
14-
// For future use by ReplayMod
15-
AllowedSodiumVersion.prefix("0.3.3+replaymod")
11+
// For use by ReplayMod
12+
AllowedSodiumVersion.prefix("0.3.4+replaymod")
1613
);
1714

1815
public static boolean isAllowedVersion(String sodiumVersion) {

0 commit comments

Comments
 (0)