diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d45313b..8b9533a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +### DynamicSurroundings-1.12.2-3.6.2.0 +**Requirements** +* Forge 2779+ +* OreLib-1.12.2-3.6.0.1+; **Do not use the deobf version of OreLib**; it's provided to developers for mod development +* **MixinBootstrap is now required!**. If it is not in the mod folder the client will fail to start. + +**What's New** +* Mixin is no longer embedded in the JAR. Dynamic Surroundings now as a dependency on MixinBootstrap. + +**Fixes** +* Added a bit of defensive code to protect Dynamic Surroundings from a misbehaving modpacks. +* Fix feature for disabling potion effect display in container GUI dialogs. + +**Changes** +* Support Animania 2.0, prior versions unsupported. +* Hide World capability attachment logging behind a config option. Eliminate spam for mods that like creating and throwing away temporary worlds without thinking mods will attach capabilities. +* Hide invalid fog range message behind a config option. +* Cleaned up Deep Forest cricket biome sound (removed the hiss) +* Cleaned up Desert Wind biome sound (applied high pass filter) +* Changed netherrack footstep sound (again); trying out gravel/sand acoustic + ### DynamicSurroundings-1.12.2-3.6.1.0 **Requirements** * Forge 2779+ diff --git a/build.gradle b/build.gradle index fca16fbe..e0497179 100644 --- a/build.gradle +++ b/build.gradle @@ -87,6 +87,7 @@ dependencies { compile "craftstudio-api:CraftStudioAPI-universal-1.0.1.95:mc1.12:alpha" compile "com.animania:animania-${project.mcVersion}-base:${project.animaniaBaseVersion}" compile "com.animania:animania-${project.mcVersion}-farm:${project.animaniaFarmVersion}" + compile "com.animania:animania-${project.mcVersion}-extra:${project.animaniaExtraVersion}" compile "serene-seasons:SereneSeasons-${project.mcVersion}:${project.ssVersion}:universal" compile "codechicken-lib-1-8:CodeChickenLib-1.12.2:3.2.3.358:universal" compile "forge-multipart-cbe:ForgeMultipart-1.12.2:2.6.2.83:universal" @@ -95,17 +96,17 @@ dependencies { compile "littletiles:LittleTiles_v1.5.0:pre169_mc1.12.2" compile "iron-chests:ironchest:1.12.2:7.0.72.847" compile "biomes-o-plenty:BiomesOPlenty-1.12.2:7.0.1.2441:universal" - compile "org.spongepowered:mixin:0.8.1-SNAPSHOT" - //compile "mixinbootstrap:MixinBootstrap:${project.mbVersion}" - - if (fileTree(dir: 'libs').filter { it.name.startsWith('OreLib') }.getFiles().size() == 0) - compile "orelib:OreLib:1.12.2:3.6.0.1" + compile "org.spongepowered:mixin:0.8.2" + compile 'mcjty.theoneprobe:TheOneProbe-1.12:1.12-1.4.28-17' //compile "creativecore:CreativeCore_v1.9.35_mc1.12.2" - + deobfCompile "mezz.jei:jei_${project.mcVersion}:${project.jeiVersion}:api" runtime "mezz.jei:jei_${project.mcVersion}:${project.jeiVersion}" deobfCompile "team.chisel:Chisel:MC${project.mcVersion}-${project.chiselVersion}" + + if (fileTree(dir: 'libs').filter { it.name.startsWith('OreLib') }.getFiles().size() == 0) + compile "orelib:OreLib:1.12.2:3.6.0.1" } processResources diff --git a/configuration.gradle b/configuration.gradle index f99387c3..0cadaf45 100644 --- a/configuration.gradle +++ b/configuration.gradle @@ -7,13 +7,14 @@ def modDesignator= "" def forgeVersion = "14.23.5.2847" def snapshot = "stable_39" -project.ext.jeiVersion = "4.16.1.302" -project.ext.chiselVersion = "1.0.2.45" -project.ext.ctmVersion = "1.0.2.31" -project.ext.ssVersion = "1.2.18" -project.ext.animaniaBaseVersion = "2.0.0.24" -project.ext.animaniaFarmVersion = "1.0.0.24" -project.ext.mbVersion = "1.0.4" +project.ext.jeiVersion = "4.16.1.302" +project.ext.chiselVersion = "1.0.2.45" +project.ext.ctmVersion = "1.0.2.31" +project.ext.ssVersion = "1.2.18" +project.ext.animaniaBaseVersion = "2.0.0.24" +project.ext.animaniaFarmVersion = "1.0.0.24" +project.ext.animaniaExtraVersion = "1.0.0.24" +project.ext.mbVersion = "1.0.4" // General Mod version stuff project.ext.mcVersion = mcVersion