Skip to content

Commit

Permalink
Sodium 0.3.4, Iris 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Jan 14, 2022
1 parent dd24af9 commit 7fd28bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

archivesBaseName = project.archives_base_name
version = "${project.mod_version}${getVersionMetadata()}"
version = "${project.mod_version}"
group = project.maven_group

loom {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ loader_version=0.12.12
# If the Modrinth maven is unavailable or Sodium is not available for whatever reason,
# you can set this to false to build a copy of the mod without Sodium compatibility included.
sodium_compatibility=true
sodium_version=mc1.17.1-0.3.3
sodium_version=mc1.17.1-0.3.4

# Mod Properties
maven_group=net.coderbot.iris_mc1_17
archives_base_name=iris-mc1.17

mod_version=1.1.4
mod_version=1.1.5
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@
public class SodiumVersionCheck {
// The allowed versions of Sodium for use with Iris
private static final ImmutableList<AllowedSodiumVersion> ALLOWED_SODIUM_VERSIONS = ImmutableList.of(
// Official 0.3.3
AllowedSodiumVersion.exact("0.3.3+build.8"),
// Official 0.3.4
AllowedSodiumVersion.exact("0.3.4+build.13"),

// ReplayMod's existing compatible forked 0.3.3 version
AllowedSodiumVersion.prefix("0.3.3+rev.14a0485"),

// For future use by ReplayMod
AllowedSodiumVersion.prefix("0.3.3+replaymod")
// For use by ReplayMod
AllowedSodiumVersion.prefix("0.3.4+replaymod")
);

public static boolean isAllowedVersion(String sodiumVersion) {
Expand Down

0 comments on commit 7fd28bd

Please sign in to comment.