Compare commits

...

8 Commits

Author SHA1 Message Date
coolGi b1cbc99a40 Removed ununsed injector 2023-06-17 13:00:39 +09:30
coolGi 8e4240ef9a Updated mod version 2023-06-08 17:27:49 +09:30
coolGi 131ba164cf Upped version number 2023-03-15 11:41:26 +00:00
coolGi acc681c535 Fixed up the build, buildsystem and the transparent lod button. 2023-03-15 21:45:57 +10:30
coolGi 1a3f9b82c6 Hack to make core shadow and relocate stuff 2022-12-20 18:52:38 +10:30
coolGi ddd6b3b817 Updated version number 2022-12-20 17:09:15 +10:30
James Seibel 5f116f0ea7 update the version number 1.6.8a -> 1.6.9a 2022-08-07 14:25:41 -05:00
James Seibel f00a1db9c2 update the version number 1.6.7a -> 1.6.8a 2022-07-31 12:06:54 -05:00
3 changed files with 38 additions and 2 deletions
+37
View File
@@ -0,0 +1,37 @@
plugins {
id "com.github.johnrengelman.shadow" version "7.1.0"
}
configurations {
common
shadowMe
implementation.extendsFrom shadowMe
}
dependencies {
// Toml
shadowMe("com.electronwill.night-config:toml:${rootProject.toml_version}") {}
// Compression
common('org.tukaani:xz:1.9')
common('org.apache.commons:commons-compress:1.21')
shadowMe 'org.tukaani:xz:1.9'
shadowMe 'org.apache.commons:commons-compress:1.21'
}
shadowJar {
configurations = [project.configurations.shadowMe]
relocate 'org.tukaani', 'shaded.tukaani'
relocate 'org.apache.commons.compress', 'shaded.apache.commons.compress'
relocate 'com.electronwill.nightconfig', 'shaded.electronwill.nightconfig'
relocate 'com.seibel.lod.common', 'fabric.com.seibel.lod.common'
classifier "dev-shadow"
}
//remapJar {
// input.set shadowJar.archiveFile
// dependsOn shadowJar
// classifier null
//}
@@ -40,5 +40,5 @@ public final class ModInfo
/** Human readable version of NAME */
public static final String READABLE_NAME = "Distant Horizons";
public static final String API = "LodAPI";
public static final String VERSION = "1.6.7a-dev";
public static final String VERSION = "1.6.12a";
}
@@ -24,7 +24,6 @@ import com.seibel.lod.core.handlers.dependencyInjection.IBindable;
import com.seibel.lod.core.util.LodUtil;
import com.seibel.lod.core.wrapperInterfaces.block.IBlockDetailWrapper;
import com.seibel.lod.core.wrapperInterfaces.world.IBiomeWrapper;
import org.spongepowered.asm.mixin.injection.Inject;
/**
* @author James Seibel