Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d4e4378602 |
@@ -135,7 +135,7 @@
|
|||||||
"mapPath": "맵 파일 (.zip)",
|
"mapPath": "맵 파일 (.zip)",
|
||||||
"mapPathHint": "/file/maps/ 아래 zip 파일 이름.",
|
"mapPathHint": "/file/maps/ 아래 zip 파일 이름.",
|
||||||
"configPath": "config 파일 (.zip)",
|
"configPath": "config 파일 (.zip)",
|
||||||
"configPathHint": "/file/config/ 아래 zip 파일 이름. 게임 폴더 루트에 그대로 풀립니다(보통 zip 안에 config/ 폴더).",
|
"configPathHint": "/file/configs/ 아래 zip 파일 이름. 게임 폴더 루트에 그대로 풀립니다(보통 zip 안에 config/ 폴더).",
|
||||||
"serverPath": "서버 파일 (.zip)",
|
"serverPath": "서버 파일 (.zip)",
|
||||||
"serverPathHint": "/file/servers/ 아래 zip 파일 이름. 멀티 모드 전용.",
|
"serverPathHint": "/file/servers/ 아래 zip 파일 이름. 멀티 모드 전용.",
|
||||||
"modsFolder": "모드 폴더 이름",
|
"modsFolder": "모드 폴더 이름",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "minecraft-music-quiz-installer",
|
"name": "minecraft-music-quiz-installer",
|
||||||
"version": "0.4.29",
|
"version": "0.4.30",
|
||||||
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
|
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
|
||||||
"main": "dist/installer/main.js",
|
"main": "dist/installer/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -775,7 +775,7 @@ async function downloadConfigZip(pack: PackDefinition, customRoot: string): Prom
|
|||||||
sendLog(t('log.skipConfigZip'))
|
sendLog(t('log.skipConfigZip'))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const url = resolveManifestRelative(pack.configPath, 'config')
|
const url = resolveManifestRelative(pack.configPath, 'configs')
|
||||||
await downloadAndExtractZip(url, t('log.labelConfigFile'), customRoot)
|
await downloadAndExtractZip(url, t('log.labelConfigFile'), customRoot)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export interface PackDefinition {
|
|||||||
/** /file/maps/<mapPath> 에서 받아 .mc_custom/saves 로 풀 zip 파일 이름. */
|
/** /file/maps/<mapPath> 에서 받아 .mc_custom/saves 로 풀 zip 파일 이름. */
|
||||||
mapPath: string
|
mapPath: string
|
||||||
/**
|
/**
|
||||||
* /file/config/<configPath> 에서 받아 게임 폴더(.mc_custom) 루트에 그대로 푸는 zip
|
* /file/configs/<configPath> 에서 받아 게임 폴더(.mc_custom) 루트에 그대로 푸는 zip
|
||||||
* 파일 이름. 보통 zip 안에 `config/` 폴더를 담는다. 빈 문자열이면 받지 않는다.
|
* 파일 이름. 보통 zip 안에 `config/` 폴더를 담는다. 빈 문자열이면 받지 않는다.
|
||||||
*/
|
*/
|
||||||
configPath: string
|
configPath: string
|
||||||
|
|||||||
Reference in New Issue
Block a user