1.14: Config implemented. Recipes completed (standalone recipes). Lang file newline escape fixes. Hard IE dependent blocks are implicitly opted out if IE is not installed.

This commit is contained in:
stfwi 2019-07-11 21:13:04 +02:00
parent 547912aaa4
commit 533a315c3f
10 changed files with 28 additions and 11 deletions

View file

@ -52,6 +52,7 @@
if(kv.length!=2) throw new Error("Invalid line in '"+file_path+"': '"+lines[i]+"'");
const key = kv[0].trim();
const text = kv[1].trim();
text = text.replace("\\\\n", "\n").replace("\\n", "\n");
if(key.length == 0) {
throw new Error("Empty key in '"+file_path+"' line '" + lines[i] + "'");
} else if(key.search("tile."+modid+".")==0) {

View file

@ -62,6 +62,7 @@
"1.0.0-a1": "[A] Initial port to 1.13.2 with Forge beta."
},
"1.14.3": {
"1.0.9-b5": "[A] Added missing recipes for slabs, stained clinker, half-slabs, valves.\n[M] Standalone recipes adapted.\n[F] Lang files: Fixed double newline escape.\n[A] Implicit opt-out of hard IE dependent blocks ported (e.g. Concrete Wall).\n[M] Basic mod config features, opt-outs and tweaks ported.",
"1.0.9-b4": "[E] Experimental: Config skel ported (!not all options have effect yet).\n[E] Experimental: JEI integration for opt-outs and crafting table ported (also addresses issue #38).",
"1.0.9-b3": "[F] Additional item drop fixes when blocks are destroyed (issue #39).",
"1.0.9-b2": "[U] Updated to Forge 1.14.3-27.0.25/20190621-1.14.2.\n[F] Fixed recipe collision of Metal Rung Ladder (issue #37, thx ProsperCraft for reporting).\n[F] Fixed opening crafting table, furni, dropper server crash issue #35 (thx ProsperCraft also here).\n[F] Fixed missing pole/support item drops (issue #36, ProsperCraft).",
@ -79,6 +80,6 @@
"1.13.2-recommended": "",
"1.13.2-latest": "1.0.7-b5",
"1.14.3-recommended": "",
"1.14.3-latest": "1.0.9-b4"
"1.14.3-latest": "1.0.9-b5"
}
}