- image_reveal becomes its own game mode: GameType gains "image"; the quiz pool is filtered by allowed formats derived from gameType (image → image_reveal only, quiz → mcq/truefalse/free, mixed → all). loadQuizPool takes a formats list; pool fallback respects it. - lobby settings reworked into a refined "Réglages" card: 4 mode tiles (icon + label, locked <3 players for blindtest/mixed), question count as a stepper, blindtest config grouped; dynamic label for image mode + hint. - admin: real upload button (hidden input + styled Button with Upload icon) instead of the bare file input. - app title set to "NerdWare …" in index.html (+ lang fr, description). Verified e2e: image mode serves only image_reveal questions (with imageUrl). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
17 lines
552 B
HTML
17 lines
552 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>NerdWare — Party game culture geek</title>
|
|
<meta
|
|
name="description"
|
|
content="Party game web multi-épreuves (quiz culture geek + blindtest YouTube), à jouer entre potes en temps réel."
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|