From c66550cd22b59b369228b0f3994f891149078dce Mon Sep 17 00:00:00 2001 From: Merith Date: Sat, 29 Mar 2025 19:49:24 -0700 Subject: [PATCH] rename and and add build file --- .gitignore | 3 ++- ...ge Recipie Tweaks.uplugin => DigitalStorageTweaks.uplugin | 2 +- makefile | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) rename DigitalStorage Recipie Tweaks.uplugin => DigitalStorageTweaks.uplugin (95%) create mode 100644 makefile diff --git a/.gitignore b/.gitignore index 6669991..d62ecf8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.recipes \ No newline at end of file +.recipes +*.zip \ No newline at end of file diff --git a/DigitalStorage Recipie Tweaks.uplugin b/DigitalStorageTweaks.uplugin similarity index 95% rename from DigitalStorage Recipie Tweaks.uplugin rename to DigitalStorageTweaks.uplugin index 0696643..55369b4 100644 --- a/DigitalStorage Recipie Tweaks.uplugin +++ b/DigitalStorageTweaks.uplugin @@ -6,7 +6,7 @@ "FriendlyName": "DigitalStorage Recipie Tweaks", "Description": "Alters a few recipies for DigitalStorage to not include Project Parts", "Category": "Modding", - "CreatedBy": "YourName", + "CreatedBy": "Merith", "CreatedByURL": "", "DocsURL": "", "MarketplaceURL": "", diff --git a/makefile b/makefile new file mode 100644 index 0000000..3f317ad --- /dev/null +++ b/makefile @@ -0,0 +1,5 @@ +ZIP_NAME = DigitalStorageTweaks.zip +FILES = ./ContentLib ./DigitalStorageTweaks.uplugin + +all: + 7z a -r $(ZIP_NAME) $(FILES) \ No newline at end of file