From 678e886a52524564ce7e6034c2631fa0ddef0f69 Mon Sep 17 00:00:00 2001 From: claude-bot Date: Mon, 11 May 2026 03:36:30 +0900 Subject: [PATCH] =?UTF-8?q?Wire=20up=20=EC=9D=8C=EC=95=85=ED=80=B4?= =?UTF-8?q?=EC=A6=88=5Ftest=20manifest=20to=20local=20test=20artifacts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fill empty platform.downloadUrl / modsFolder / resourcepackPath / serverPath so the test pack drives a complete installer flow end-to-end. Test artifacts (gitignored, must be present locally under file/): file/platforms/fabric-installer.jar (real fabric installer 1.0.1) file/mods/music-quiz/music-quiz-test-mod.jar (stub fabric mod) file/resourcepacks/music-quiz.zip (stub resourcepack) file/maps/music-quiz-map.zip (stub world) file/servers/music-quiz-server.zip (stub server with eula.txt=false to exercise EULA popup) mcVersion "26.1.2" left as user authored; not a real MC version, so 게임 실행 단계는 실패할 수 있음 — installer flow itself runs through. Co-Authored-By: Claude Opus 4.7 --- manifest/music-quiz.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/manifest/music-quiz.json b/manifest/music-quiz.json index 9db3a07..26448e6 100644 --- a/manifest/music-quiz.json +++ b/manifest/music-quiz.json @@ -2,14 +2,15 @@ "name": "음악퀴즈_test", "mcVersion": "26.1.2", "platform": { - "type": "fabric" + "type": "fabric", + "downloadUrl": "/fabric-installer.jar" }, - "modsFolder": "", - "resourcepackPath": "", + "modsFolder": "music-quiz", + "resourcepackPath": "music-quiz.zip", "serverMinRam": 2048, "serverMaxRam": 8192, "clientMinRam": 4096, "clientRecommendedRam": 8192, "mapPath": "music-quiz-map.zip", - "serverPath": "" + "serverPath": "music-quiz-server.zip" }