diff --git a/build.gradle b/build.gradle index 99d040299..f665ed05d 100644 --- a/build.gradle +++ b/build.gradle @@ -118,6 +118,7 @@ dependencies { } jar { + classifier = 'slim' manifest { attributes([ "Specification-Title": "create", @@ -132,6 +133,7 @@ jar { } shadowJar { + classifier = '' configurations = [project.configurations.shade] relocate 'com.tterrag.registrate', 'com.simibubi.create.repack.registrate' } @@ -153,7 +155,7 @@ String getChangelogText() { def temp = it if (lineCount == 0) { temp = "Create ${version}" - temp = "

$temp

for Minecraft ${minecraft_version}
" + temp = "Create v${mod_version}  for Minecraft ${minecraft_version}
" } else if (it.startsWith('-')) { temp = "   $temp
" temp = temp.replaceAll("(\\S+\\/\\S+)#([0-9]+)\\b", "\$0"); @@ -163,14 +165,17 @@ String getChangelogText() { } str += temp lineCount++ - return } else { + str += "

Please submit any Issues you come across on the Issue Tracker.

" done = true } } return str } +//changelog debugging +//new File("changelog.html").write getChangelogText() + tasks.curseforge.enabled = !dev && project.hasProperty('simi_curseforge_key') curseforge { @@ -183,7 +188,7 @@ curseforge { changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG') changelogType = 'html' releaseType = project.curse_type - mainArtifact(jar) { + mainArtifact(shadowJar) { displayName = "Create - ${version}" } relations { diff --git a/changelog.txt b/changelog.txt index 16961d7c8..eceb49bb8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,24 @@ +0.2.4c: +A hotfix for our dear users over in Multiplayer. +Fixes +- (0.2.4b) Fixed server crash when Cart Assembler accelerates held Minecarts +- Fixed build errors of previous version + +0.2.4a: +Just a few Bug-Fixes since the recent 1.15 release. Enjoy! +Fixes +- Fixed pistons moving at inconsistent speeds, overshooting their bounds +- Fixed belts not moving entities +- Fixed diagonal belts teleporting entities miles away +- Fixed tree fertilizer not working +- Patched some localization gaps +- Fixed pulley placing down ropes when destroyed while moving +- Fixed inconsistencies with glue removal and placement +- Fixed crash when placing a crafter between two colliding rotation sources +- Fixed cases of self-powering loops caused by blocks rotated using the wrench +- Fixed Extendo Grip animation for left-handed players +- Fixed encoding of degree symbols in tooltips + 0.2.4: Welcome to the future! Glad you are still here. Warning diff --git a/gradle.properties b/gradle.properties index d093825f5..9513489dc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false # mod version info -mod_version=0.2.4 +mod_version=0.2.4c minecraft_version=1.15.2 forge_version=31.2.3 @@ -17,4 +17,4 @@ projectId=328085 curse_type=beta # github information -github_project=Creators-of-Create/Create \ No newline at end of file +github_project=Creators-of-Create/Create diff --git a/src/main/java/com/simibubi/create/Create.java b/src/main/java/com/simibubi/create/Create.java index 602c71053..06942182a 100644 --- a/src/main/java/com/simibubi/create/Create.java +++ b/src/main/java/com/simibubi/create/Create.java @@ -38,7 +38,7 @@ public class Create { public static final String ID = "create"; public static final String NAME = "Create"; - public static final String VERSION = "0.2.4"; + public static final String VERSION = "0.2.4c"; public static Logger logger = LogManager.getLogger(); public static ItemGroup baseCreativeTab = new CreateItemGroup();