- PackDefinition: replace mods[]/resourcepacks[] with modsFolder (string) + resourcepackPath (string); drop PackAsset - Editor: replace dynamic add/remove lists with two single inputs; remove the now-dead JS for adding/removing rows - Server: expose GET /file/mods/<folder>/index.json that returns the list of .jar names; folder name restricted to [a-zA-Z0-9_-]+ - Installer: fetch the listing JSON and download each jar from /file/mods/<folder>/<file>.jar; download the single resourcepack from /file/resourcepacks/<file>.zip directly into resourcepacks/ Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>음악퀴즈 목록</title>
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
</head>
|
|
<body class="siteBody">
|
|
<main class="pageWrap">
|
|
<section class="hero">
|
|
<h1>마인크래프트 음악퀴즈</h1>
|
|
<p>설치기에서 사용 가능한 음악퀴즈 목록입니다.</p>
|
|
</section>
|
|
|
|
<section class="cardRow horizontalScroll">
|
|
<% if (packs.length === 0) { %>
|
|
<p class="muted">등록된 음악퀴즈가 없습니다.</p>
|
|
<% } %>
|
|
<% packs.forEach(function (entry) { %>
|
|
<article class="packCard">
|
|
<h2><%= entry.name %></h2>
|
|
<p class="muted">파일: <%= entry.file %>.json</p>
|
|
<% if (entry.definition) { %>
|
|
<ul class="metaList">
|
|
<li>마인크래프트 <strong><%= entry.definition.mcVersion %></strong></li>
|
|
<li>플랫폼 <strong><%= entry.definition.platform.type %></strong></li>
|
|
<li>모드 폴더 <%= entry.definition.modsFolder || '없음' %> / 리소스팩 <%= entry.definition.resourcepackPath || '없음' %></li>
|
|
</ul>
|
|
<% } %>
|
|
</article>
|
|
<% }) %>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|