mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-11 13:04:05 +01:00
Merge reinforced rails into mc1.15/dev
This commit is contained in:
commit
1c3e08bd66
11
build.gradle
11
build.gradle
@ -118,6 +118,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
classifier = 'slim'
|
||||||
manifest {
|
manifest {
|
||||||
attributes([
|
attributes([
|
||||||
"Specification-Title": "create",
|
"Specification-Title": "create",
|
||||||
@ -132,6 +133,7 @@ jar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
shadowJar {
|
shadowJar {
|
||||||
|
classifier = ''
|
||||||
configurations = [project.configurations.shade]
|
configurations = [project.configurations.shade]
|
||||||
relocate 'com.tterrag.registrate', 'com.simibubi.create.repack.registrate'
|
relocate 'com.tterrag.registrate', 'com.simibubi.create.repack.registrate'
|
||||||
}
|
}
|
||||||
@ -153,7 +155,7 @@ String getChangelogText() {
|
|||||||
def temp = it
|
def temp = it
|
||||||
if (lineCount == 0) {
|
if (lineCount == 0) {
|
||||||
temp = "Create ${version}"
|
temp = "Create ${version}"
|
||||||
temp = "<h2 style=\"display:inline;\">$temp </h2><em>for Minecraft ${minecraft_version}</em><br/>"
|
temp = "<span style=\"font-size: 18px; color: #333399;\">Create v${mod_version}</span> <em>for Minecraft ${minecraft_version}</em><br/>"
|
||||||
} else if (it.startsWith('-')) {
|
} else if (it.startsWith('-')) {
|
||||||
temp = " $temp<br/>"
|
temp = " $temp<br/>"
|
||||||
temp = temp.replaceAll("(\\S+\\/\\S+)#([0-9]+)\\b", "<a href=\"https://github.com/\$1/issues/\$2\">\$0</a>");
|
temp = temp.replaceAll("(\\S+\\/\\S+)#([0-9]+)\\b", "<a href=\"https://github.com/\$1/issues/\$2\">\$0</a>");
|
||||||
@ -163,14 +165,17 @@ String getChangelogText() {
|
|||||||
}
|
}
|
||||||
str += temp
|
str += temp
|
||||||
lineCount++
|
lineCount++
|
||||||
return
|
|
||||||
} else {
|
} else {
|
||||||
|
str += "<p>Please submit any Issues you come across on the <a href=\"https://github.com/${github_project}/issues\" rel=\"nofollow\">Issue Tracker</a>.</p>"
|
||||||
done = true
|
done = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return str
|
return str
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//changelog debugging
|
||||||
|
//new File("changelog.html").write getChangelogText()
|
||||||
|
|
||||||
tasks.curseforge.enabled = !dev && project.hasProperty('simi_curseforge_key')
|
tasks.curseforge.enabled = !dev && project.hasProperty('simi_curseforge_key')
|
||||||
|
|
||||||
curseforge {
|
curseforge {
|
||||||
@ -183,7 +188,7 @@ curseforge {
|
|||||||
changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG')
|
changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG')
|
||||||
changelogType = 'html'
|
changelogType = 'html'
|
||||||
releaseType = project.curse_type
|
releaseType = project.curse_type
|
||||||
mainArtifact(jar) {
|
mainArtifact(shadowJar) {
|
||||||
displayName = "Create - ${version}"
|
displayName = "Create - ${version}"
|
||||||
}
|
}
|
||||||
relations {
|
relations {
|
||||||
|
@ -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:
|
0.2.4:
|
||||||
Welcome to the future! Glad you are still here.
|
Welcome to the future! Glad you are still here.
|
||||||
Warning
|
Warning
|
||||||
|
@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
|
|||||||
org.gradle.daemon=false
|
org.gradle.daemon=false
|
||||||
|
|
||||||
# mod version info
|
# mod version info
|
||||||
mod_version=0.2.4
|
mod_version=0.2.4c
|
||||||
minecraft_version=1.15.2
|
minecraft_version=1.15.2
|
||||||
forge_version=31.2.3
|
forge_version=31.2.3
|
||||||
|
|
||||||
@ -17,4 +17,4 @@ projectId=328085
|
|||||||
curse_type=beta
|
curse_type=beta
|
||||||
|
|
||||||
# github information
|
# github information
|
||||||
github_project=Creators-of-Create/Create
|
github_project=Creators-of-Create/Create
|
||||||
|
@ -38,7 +38,7 @@ public class Create {
|
|||||||
|
|
||||||
public static final String ID = "create";
|
public static final String ID = "create";
|
||||||
public static final String NAME = "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 Logger logger = LogManager.getLogger();
|
||||||
public static ItemGroup baseCreativeTab = new CreateItemGroup();
|
public static ItemGroup baseCreativeTab = new CreateItemGroup();
|
||||||
|
Loading…
Reference in New Issue
Block a user