Implements the full spec described in README.md: Management site (Node + TypeScript + Express + EJS): - Public main page lists packs registered in manifest.json. - /op login (account.json, internal-only), /op/dashboard manages packs with horizontal-scroll cards, add/select-and-delete flow, and the /op/dashboard/:packName editor (Mojang release dropdown, dynamic mods/resourcepacks lists, platform/RAM fields, file rename). - Routes for /manifest.json (public) and /file/* (server pack files). - Middleware blocks /account.json and /manifest/* directory access. Installer (Electron): - Five page renderer driven by IPC (preload contextBridge API): pack pick → single/multi → server install (path no-Korean check, JDK detect, file download, EULA, RAM gating, local web config editor, UPnP/port-forward check) → client install (.mc_custom mods + resourcepacks + launcher_profiles.json gameDir/javaArgs) → finish toggles (server folder, shortcut, server start, launcher start). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
30 lines
842 B
HTML
30 lines
842 B
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>마인크래프트 음악퀴즈 간편설치기</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<header class="appHeader">
|
|
<h1>마인크래프트 음악퀴즈 간편설치기</h1>
|
|
<ol class="stepIndicator" id="stepIndicator">
|
|
<li data-step="1">1. 음악퀴즈</li>
|
|
<li data-step="2">2. 모드</li>
|
|
<li data-step="3">3. 서버</li>
|
|
<li data-step="4">4. 클라이언트</li>
|
|
<li data-step="5">5. 완료</li>
|
|
</ol>
|
|
</header>
|
|
|
|
<main id="pageHost"></main>
|
|
|
|
<aside class="logViewer" id="logViewer" hidden>
|
|
<header><h2>설치 로그</h2><button type="button" id="logToggle">접기</button></header>
|
|
<pre id="logBody"></pre>
|
|
</aside>
|
|
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|