Added small lab furnace. 1.13 build system setup WIP.
This commit is contained in:
parent
fe3f5b82b1
commit
3d4e8b6591
33 changed files with 1114 additions and 38 deletions
1
1.13/.gitignore
vendored
1
1.13/.gitignore
vendored
|
@ -33,3 +33,4 @@ desktop.ini
|
|||
.DS_Store
|
||||
Thumbs.db
|
||||
forge*changelog.txt
|
||||
/*.txt
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||
"1.13.2": {
|
||||
"1.0.2-b2": "[A] Added wall decomposition recipes.\n[A] Added slag brick wall.\n[M] Climbing/descending mod ladders is faster when looking up or down and not sneaking.\n[M] Panzer glass material definition changed.",
|
||||
"1.0.2-b1": "[A] Added Treated wood crafting table.\n[A] Added decomposition recipes for stairs and tiles.\n[N] Note: All v1.0.2-b1-mc1.12.2 blocks are ported to 1.13.2 (alpha -^ beta version).\n[N] Note: Until IE is out for 1.13.2, the recipes are temporary with vanilla items.",
|
||||
"1.0.0-a3": "[A] Added iron inset light.\n[A] Added rebar concrete tile.\n[A] Added rebar concrete tile stairs.\n[A] Added clinker brick wall.\n[A] Added treated wood stool.\n[A] Added treated window sill.",
|
||||
"1.0.0-a2": "[A] Added panzer glass.",
|
||||
"1.0.0-a1": "[A] Initial port to 1.13.2 with Forge beta."
|
||||
},
|
||||
"promos": {
|
||||
"1.13.2-recommended": "",
|
||||
"1.13.2-latest": "1.0.0-a1"
|
||||
"1.13.2-latest": "1.0.2-b2"
|
||||
}
|
||||
}
|
|
@ -10,6 +10,30 @@ Mod sources for Minecraft version 1.13.2.
|
|||
----
|
||||
## Revision history
|
||||
|
||||
~ v1.0.2-b3 [A]
|
||||
|
||||
- v1.0.2-b2 [A] Added wall decomposition recipes.
|
||||
[A] Added slag brick wall.
|
||||
[M] Climbing/descending mod ladders is faster when
|
||||
looking up or down and not sneaking.
|
||||
[M] Panzer glass material definition changed.
|
||||
|
||||
- v1.0.2-b1 [A] Added Treated wood crafting table.
|
||||
[A] Added decomposition recipes for stairs and tiles.
|
||||
[N] Note: All v1.0.2-b1-mc1.12.2 blocks are
|
||||
ported to 1.13.2 (alpha -^ beta version).
|
||||
[N] Note: Until IE is out for 1.13.2, the
|
||||
recipes are temporary with vanilla items.
|
||||
|
||||
- v1.0.0-a3 [A] Added iron inset light.
|
||||
[A] Added rebar concrete tile.
|
||||
[A] Added rebar concrete tile stairs.
|
||||
[A] Added clinker brick wall.
|
||||
[A] Added treated wood stool.
|
||||
[A] Added treated window sill.
|
||||
|
||||
- v1.0.0-a2 [A] Added panzer glass.
|
||||
|
||||
- v1.0.0-a1 [A] Initial port to 1.13.2 with Forge beta.
|
||||
|
||||
----
|
||||
|
|
|
@ -26,9 +26,9 @@ tasks["dist-check"] = function() {
|
|||
if(git_remote.replace(/[\s]/g,"").indexOf("git@github.com:stfwi/engineers-decor.git(push)") < 0) fails.push("Not the reference repository.");
|
||||
if((git_branch != "develop") && (git_branch != "master")) {
|
||||
fails.push("No valid branch for dist. (branch:'"+git_branch+"')");
|
||||
} else if((git_branch == "develop") && (version_engineersdecor.replace(/[^\w\.-]/g,"")=="")) {
|
||||
} else if((git_branch == "develop") && (version_engineersdecor.replace(/[^ab]/g,"")=="")) {
|
||||
fails.push("Cannot make release dist on develop branch.");
|
||||
} else if((git_branch == "master") && (version_engineersdecor.replace(/[^\w\.-]/g,"")!="")) {
|
||||
} else if((git_branch == "master") && (version_engineersdecor.replace(/[^ab]/g,"")!="")) {
|
||||
fails.push("Cannot make beta dist on master branch.");
|
||||
}
|
||||
if(git_diff !== "") fails.push("Not everything committed to the GIT repository.");
|
||||
|
@ -109,9 +109,9 @@ tasks["version-check"] = function() {
|
|||
})
|
||||
const combined_version = version_minecraft + "-" + version_engineersdecor;
|
||||
var readme_version_found = fs.readfile("readme.md", function(line){
|
||||
var m = line.match(/^[\s]+-[\s]+v([\d]+[\.][\d]+[\.][\d]+[-][abrc][\d]+)/i);
|
||||
var m = line.match(/^[\s]+[-~][\s]+v([\d]+[\.][\d]+[\.][\d]+[-][abrc][\d]+)/i);
|
||||
if((!m) || (!m.length) || (m.length < 2)) {
|
||||
m = line.match(/^[\s]+-[\s]+v([\d]+[\.][\d]+[\.][\d]+)/i);
|
||||
m = line.match(/^[\s]+[-~][\s]+v([\d]+[\.][\d]+[\.][\d]+)/i);
|
||||
if((!m) || (!m.length) || (m.length < 2)) return false;
|
||||
}
|
||||
return m[1]==version_engineersdecor;
|
||||
|
@ -189,7 +189,7 @@ tasks["update-json"] = function() {
|
|||
// Condense log entries sepatated with newlines to one line for each version
|
||||
for(var i=readme.length-1; i>0; --i) {
|
||||
var line = readme[i].replace(/^\s+/,"");
|
||||
if(line.search(/^-/) < 0) {
|
||||
if(line.search(/^[-~]/) < 0) {
|
||||
readme[i-1] += "\n" + line;
|
||||
readme[i] = "";
|
||||
}
|
||||
|
@ -201,6 +201,7 @@ tasks["update-json"] = function() {
|
|||
var line = readme[i].replace(/^[\sv-]+/g,"").trim();
|
||||
var ver = line.substr(0, line.search(" ")).trim().toLowerCase();
|
||||
var txt = line.substr(line.search(" ")).trim();
|
||||
if(ver.search("~")===0) continue;
|
||||
if(history[ver] !== undefined) throw new Error("Double definition of version '" + ver + "' in the readme revision history.");
|
||||
history[ver] = txt;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue