Compare commits

...

3 commits
main ... v1.0.2

Author SHA1 Message Date
111e095d37 update version, 1.0.2 2025-04-08 10:25:59 -07:00
96fe188bbf fix misshap 2025-04-08 10:25:35 -07:00
c3e07efdbf Package For Server 2025-03-31 12:14:07 -07:00
7 changed files with 14 additions and 7 deletions

5
.gitignore vendored
View file

@ -1,2 +1,5 @@
.recipes .recipes
*.zip *.zip
LinuxServer
Windows
WindowsServer

View file

@ -12,7 +12,7 @@
"Amount": 20 "Amount": 20
}, },
{ {
"Item": "Desc_SpaceElevatorPart", "Item": "Desc_IronPlateReinforced",
"Amount": 10 "Amount": 10
}, },
{ {

View file

@ -12,7 +12,7 @@
"Amount": 10 "Amount": 10
}, },
{ {
"Item": "Desc_SpaceElevatorPart", "Item": "Desc_IronPlateReinforced",
"Amount": 1 "Amount": 1
} }
], ],

View file

@ -12,7 +12,7 @@
"Amount": 1 "Amount": 1
}, },
{ {
"Item": "Desc_SpaceElevatorPart", "Item": "Desc_IronPlateReinforced",
"Amount": 1 "Amount": 1
} }
], ],

View file

@ -16,7 +16,7 @@
"Amount": 10 "Amount": 10
}, },
{ {
"Item": "Desc_SpaceElevatorPart", "Item": "Desc_IronPlateReinforced",
"Amount": 4 "Amount": 4
} }
], ],

View file

@ -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",

View file

@ -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/