Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
OreCruncher committed Nov 1, 2020
1 parent 8d0e3a7 commit 0435c2b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -19,6 +19,7 @@
/.gradle/
/.project
/.settings/
/.idea/
/eula.txt
/world/
/banned-ips.json
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,18 @@
### DynamicSurroundings-1.12.2-3.6.2.1
**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
* Mixin is no longer embedded in Dynamic Surroundings. Mixin support will need to be provided by another mod, or install MixinBootstrap as well.

**Fixes**
* Potential NPE when performing fog color calculations
* Pixelated water ripple effect will now render properly

### 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.
* Mixin is no longer embedded in Dynamic Surroundings. Mixin support will need to be provided by another mod, or install MixinBootstrap as well.

**What's New**
* Mixin is no longer embedded in the JAR. Dynamic Surroundings now as a dependency on MixinBootstrap.
Expand Down
10 changes: 0 additions & 10 deletions build.gradle
Expand Up @@ -72,11 +72,6 @@ minecraft {
mappings = project.ext.snapshot
}

configurations {
embed
implementation.extendsFrom(embed)
}

sourceSets {
main {
ext.refMap = "mixins.dsurround.refmap.json"
Expand Down Expand Up @@ -130,10 +125,6 @@ processResources
}

jar {
from(configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude "LICENSE.txt", "META-INF/MANIFSET.MF", "META-INF/maven/**", "META-INF/*.RSA", "META-INF/*.SF"
}

// Add CREDITS.md
into('/') {
from('CREDITS.md')
Expand All @@ -143,7 +134,6 @@ jar {
"FMLCorePluginContainsFMLMod": "true",
"ForceLoadAsMod": "true",
"TweakClass": "org.spongepowered.asm.launch.MixinTweaker",
"TweakOrder": 0,
"MixinConfigs": "mixins.dsurround.json",
"FMLCorePlugin": "org.orecruncher.dsurround.mixins.TransformLoader"
)
Expand Down
2 changes: 1 addition & 1 deletion configuration.gradle
@@ -1,7 +1,7 @@
// Basics defined up here to make life easier
// Tweak the defs, not the others!
def mcVersion = "1.12.2"
def modVersion = "3.6.2.0"
def modVersion = "3.6.2.1"
def modDesignator= ""
//def forgeVersion = "14.23.5.2779"
def forgeVersion = "14.23.5.2847"
Expand Down

0 comments on commit 0435c2b

Please sign in to comment.