Compare commits

...

1 Commits

Author SHA1 Message Date
f53e54493d feat(installer): 완료 화면에 리소스팩 안내 경고 추가
음악퀴즈 간편설치기 마지막(완료) 단계, 마인크래프트 실행 직전에
"리소스팩은 리소스팩 설치기로 설치해서 마인크래프트 내에서 직접 적용해야 합니다"
경고 문구를 눈에 띄게 표시. 0.4.14→0.4.15.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-22 01:02:47 +09:00
3 changed files with 5 additions and 1 deletions

View File

@@ -1067,6 +1067,9 @@ function renderStep5() {
section.innerHTML = section.innerHTML =
'<h2>' + tt('step5.heading') + '</h2>' + '<h2>' + tt('step5.heading') + '</h2>' +
'<p>' + tt('step5.summary') + '</p>' + '<p>' + tt('step5.summary') + '</p>' +
'<div style="margin:12px 0;padding:14px 16px;border:1px solid var(--warning, #d9a441);border-radius:10px;background:rgba(217,164,65,0.12);font-size:14px;font-weight:600;line-height:1.55;">' +
'⚠ ' + escapeHtml(tt('step5.resourcepackWarning')) +
'</div>' +
(showServerActions ? '<div class="subStep">' + (showServerActions ? '<div class="subStep">' +
'<h3>' + tt('step5.serverHeading') + '</h3>' + '<h3>' + tt('step5.serverHeading') + '</h3>' +
'<button class="secondaryBtn" id="openFolder">' + tt('step5.openServerFolder') + '</button>' + '<button class="secondaryBtn" id="openFolder">' + tt('step5.openServerFolder') + '</button>' +

View File

@@ -163,6 +163,7 @@
"step5": { "step5": {
"heading": "설치 완료", "heading": "설치 완료",
"summary": "", "summary": "",
"resourcepackWarning": "리소스팩은 리소스팩 설치기로 설치해서 마인크래프트 내에서 직접 적용해야 합니다.",
"serverHeading": "서버", "serverHeading": "서버",
"openServerFolder": "서버 폴더 열기", "openServerFolder": "서버 폴더 열기",
"shortcut": "바탕화면에 서버 실행 바로가기 만들기", "shortcut": "바탕화면에 서버 실행 바로가기 만들기",

View File

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