Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
111e095d37 | |||
96fe188bbf | |||
c3e07efdbf |
7 changed files with 14 additions and 7 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
.recipes
|
.recipes
|
||||||
*.zip
|
*.zip
|
||||||
|
LinuxServer
|
||||||
|
Windows
|
||||||
|
WindowsServer
|
|
@ -12,7 +12,7 @@
|
||||||
"Amount": 20
|
"Amount": 20
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Item": "Desc_SpaceElevatorPart",
|
"Item": "Desc_IronPlateReinforced",
|
||||||
"Amount": 10
|
"Amount": 10
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"Amount": 10
|
"Amount": 10
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Item": "Desc_SpaceElevatorPart",
|
"Item": "Desc_IronPlateReinforced",
|
||||||
"Amount": 1
|
"Amount": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"Amount": 1
|
"Amount": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Item": "Desc_SpaceElevatorPart",
|
"Item": "Desc_IronPlateReinforced",
|
||||||
"Amount": 1
|
"Amount": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"Amount": 10
|
"Amount": 10
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Item": "Desc_SpaceElevatorPart",
|
"Item": "Desc_IronPlateReinforced",
|
||||||
"Amount": 4
|
"Amount": 4
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"VersionName": "1.0.0",
|
"VersionName": "1.0.0",
|
||||||
"GameVersion": ">=385279",
|
"GameVersion": ">=385279",
|
||||||
"SemVersion": "1.0.0",
|
"SemVersion": "1.0.2",
|
||||||
"FriendlyName": "DigitalStorageTweaks",
|
"FriendlyName": "DigitalStorageTweaks",
|
||||||
"Description": "Alters a few recipies for DigitalStorage to not include Project Parts",
|
"Description": "Alters a few recipies for DigitalStorage to not include Project Parts",
|
||||||
"Category": "Modding",
|
"Category": "Modding",
|
||||||
|
|
6
makefile
6
makefile
|
@ -2,4 +2,8 @@ ZIP_NAME = DigitalStorageTweaks.zip
|
||||||
FILES = ./ContentLib ./DigitalStorageTweaks.uplugin
|
FILES = ./ContentLib ./DigitalStorageTweaks.uplugin
|
||||||
|
|
||||||
all:
|
all:
|
||||||
7z a -r $(ZIP_NAME) $(FILES)
|
mkdir -p Windows WindowsServer LinuxServer
|
||||||
|
cp -r $(FILES) Windows/
|
||||||
|
cp -r $(FILES) WindowsServer/
|
||||||
|
cp -r $(FILES) LinuxServer/
|
||||||
|
7z a -r $(ZIP_NAME) Windows/ LinuxServer/ WindowsServer/
|
Loading…
Reference in a new issue