From 76028c3a95e47ec8c101b49d589c2e94fc42e22a Mon Sep 17 00:00:00 2001 From: Ben C Date: Fri, 20 Dec 2024 17:03:30 -0500 Subject: [PATCH 1/3] Multipart Mod Proposal --- schemas/manifest_schema.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/schemas/manifest_schema.json b/schemas/manifest_schema.json index c67470187..f823f7e8f 100644 --- a/schemas/manifest_schema.json +++ b/schemas/manifest_schema.json @@ -129,6 +129,13 @@ ] } }, + "additionalAssets": { + "type": "array", + "description": "A list of additonal *ZIP* files the manager should download from the GitHub release of this mod and extract at the root of the mod folder. Use this when you need to bypass the 2 GB limit on GitHub releases", + "items": { + "type": "string" + } + }, "pathsToPreserve": { "type": "array", "description": "The paths to preserve when updating the mod\nAutomatically includes config.json, manifest.json, and save.json", From d9994f8c1a4ab42040630f576f77d25a9d5573fc Mon Sep 17 00:00:00 2001 From: Ben C Date: Fri, 20 Dec 2024 20:47:52 -0500 Subject: [PATCH 2/3] Mention db behavior --- schemas/manifest_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/manifest_schema.json b/schemas/manifest_schema.json index f823f7e8f..07f81e302 100644 --- a/schemas/manifest_schema.json +++ b/schemas/manifest_schema.json @@ -131,7 +131,7 @@ }, "additionalAssets": { "type": "array", - "description": "A list of additonal *ZIP* files the manager should download from the GitHub release of this mod and extract at the root of the mod folder. Use this when you need to bypass the 2 GB limit on GitHub releases", + "description": "A list of additonal *ZIP* files the manager should download from the GitHub release of this mod and extract at the root of the mod folder. The mods database only sees the first ZIP file of a release, use this when you need to bypass the 2 GB limit on GitHub releases.", "items": { "type": "string" } From df201ea71654808077854b99501ed24be87965c7 Mon Sep 17 00:00:00 2001 From: Ben C Date: Fri, 20 Dec 2024 20:48:55 -0500 Subject: [PATCH 3/3] Update manifest_schema.json --- schemas/manifest_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/manifest_schema.json b/schemas/manifest_schema.json index 07f81e302..1dd667635 100644 --- a/schemas/manifest_schema.json +++ b/schemas/manifest_schema.json @@ -131,7 +131,7 @@ }, "additionalAssets": { "type": "array", - "description": "A list of additonal *ZIP* files the manager should download from the GitHub release of this mod and extract at the root of the mod folder. The mods database only sees the first ZIP file of a release, use this when you need to bypass the 2 GB limit on GitHub releases.", + "description": "A list of additonal *ZIP* files the manager should download from the GitHub release of this mod and extract at the root of the mod folder. The mods database only sees the first ZIP file of a release, use this when you need to bypass the 2 GB limit on single GitHub release artifacts.", "items": { "type": "string" }