File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed 
src/main/java/net/coderbot/iris/compat/sodium Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8
88targetCompatibility =  JavaVersion . VERSION_1_8 
99
1010archivesBaseName =  project. archives_base_name
11- version =  " ${ project.mod_version}${  getVersionMetadata() } " 
11+ version =  " ${ project.mod_version} " 
1212group =  project. maven_group
1313
1414loom  {
Original file line number Diff line number Diff 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.
1414sodium_compatibility =true 
15- sodium_version =mc1.17.1-0.3.3  
15+ sodium_version =mc1.17.1-0.3.4  
1616
1717#  Mod Properties
1818maven_group =net.coderbot.iris_mc1_17 
1919archives_base_name =iris-mc1.17 
2020
21- mod_version =1.1.4  
21+ mod_version =1.1.5  
Original file line number Diff line number Diff line change 55public  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 ) {
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments