Compare commits

..

2 Commits

Author SHA1 Message Date
4f496eac10 release: v1.0.0 정식 배포
기능 변경 없이 버전만 1.0.0 으로 승격(config 파일 지원, fabric meta 설치,
다운로드 오류 URL 표시 등 0.4.x 누적 기능 포함).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-08-16 21:57:45 +09:00
d4e4378602 revert(installer): config zip 경로를 /file/configs (복수)로 되돌림 (v0.4.30)
사용자가 서버 폴더를 configs(복수)로 정리하기로 해, 단수 config 로 바꿨던
것을 원복. resolveManifestRelative subDir 'configs', 타입 주석/로케일 힌트/
리포지토리 폴더(file/configs)/버전(0.4.30) 모두 복수로 통일.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-08-11 17:47:43 +09:00
5 changed files with 4 additions and 4 deletions

View File

@@ -135,7 +135,7 @@
"mapPath": "맵 파일 (.zip)",
"mapPathHint": "/file/maps/ 아래 zip 파일 이름.",
"configPath": "config 파일 (.zip)",
"configPathHint": "/file/config/ 아래 zip 파일 이름. 게임 폴더 루트에 그대로 풀립니다(보통 zip 안에 config/ 폴더).",
"configPathHint": "/file/configs/ 아래 zip 파일 이름. 게임 폴더 루트에 그대로 풀립니다(보통 zip 안에 config/ 폴더).",
"serverPath": "서버 파일 (.zip)",
"serverPathHint": "/file/servers/ 아래 zip 파일 이름. 멀티 모드 전용.",
"modsFolder": "모드 폴더 이름",

View File

@@ -1,6 +1,6 @@
{
"name": "minecraft-music-quiz-installer",
"version": "0.4.29",
"version": "1.0.0",
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
"main": "dist/installer/main.js",
"scripts": {

View File

@@ -775,7 +775,7 @@ async function downloadConfigZip(pack: PackDefinition, customRoot: string): Prom
sendLog(t('log.skipConfigZip'))
return
}
const url = resolveManifestRelative(pack.configPath, 'config')
const url = resolveManifestRelative(pack.configPath, 'configs')
await downloadAndExtractZip(url, t('log.labelConfigFile'), customRoot)
}

View File

@@ -42,7 +42,7 @@ export interface PackDefinition {
/** /file/maps/<mapPath> 에서 받아 .mc_custom/saves 로 풀 zip 파일 이름. */
mapPath: string
/**
* /file/config/<configPath> 에서 받아 게임 폴더(.mc_custom) 루트에 그대로 푸는 zip
* /file/configs/<configPath> 에서 받아 게임 폴더(.mc_custom) 루트에 그대로 푸는 zip
* 파일 이름. 보통 zip 안에 `config/` 폴더를 담는다. 빈 문자열이면 받지 않는다.
*/
configPath: string