From 83c36d205293685804093cc18d0097cec289fa28 Mon Sep 17 00:00:00 2001 From: schmop Date: Sun, 31 May 2026 17:29:46 +0200 Subject: [PATCH] =?UTF-8?q?Rundenzeiten=20auf=2015/30/60=20Sekunden=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- src/lib/stores/settings.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65dcc70..bb2f7c4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Für jede Zielzahl wird sichtbar, wie weit das Kind in den letzten fünf Runden ## Funktionsumfang - Zielzahlen 4 bis 10, einzeln auswählbar -- Rundenzeit einstellbar (30 / 60 / 90 / 120 Sekunden) +- Rundenzeit einstellbar (15 / 30 / 60 Sekunden) - Sound an/aus über Lautsprecher-Knopf - Highscore-Anzeige je Zielzahl mit Krone für die beste Runde - Läuft offline und kann als App installiert werden (PWA) diff --git a/src/lib/stores/settings.ts b/src/lib/stores/settings.ts index 482dc61..088884b 100644 --- a/src/lib/stores/settings.ts +++ b/src/lib/stores/settings.ts @@ -1,7 +1,7 @@ import { writable } from 'svelte/store'; import { loadSettings, saveSettings, type Settings } from '../game/persistence'; -export const ROUND_SECONDS_OPTIONS = [30, 60, 90, 120] as const; +export const ROUND_SECONDS_OPTIONS = [15, 30, 60] as const; const initial: Settings = typeof window === 'undefined'