Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
OreCruncher committed Oct 18, 2020
1 parent 7fcfed8 commit ac68a80
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 13 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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+
Expand Down
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
15 changes: 8 additions & 7 deletions configuration.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac68a80

Please sign in to comment.