From 35516d31f6e4de284233b11d8497817e88b54b74 Mon Sep 17 00:00:00 2001 From: funman300 Date: Thu, 7 May 2026 17:40:44 +0000 Subject: [PATCH] docs(help): add M / P / Win-Summary-Enter to the Overlays section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Help (F1) modal's Overlays section listed S/A/L/O but skipped two post-v0.18 entries — M (Home / Mode launcher) and P (Profile) — and never mentioned the recently-shipped Enter accelerator that dismisses the Win Summary. Help is the canonical keyboard-discovery surface. Three new rows cover the gap so a player who opens F1 sees every overlay-toggle key, plus the contextual Enter shortcut. Co-Authored-By: Claude Opus 4.7 (1M context) --- solitaire_engine/src/help_plugin.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solitaire_engine/src/help_plugin.rs b/solitaire_engine/src/help_plugin.rs index d6dedd4..db54ab9 100644 --- a/solitaire_engine/src/help_plugin.rs +++ b/solitaire_engine/src/help_plugin.rs @@ -184,6 +184,8 @@ const CONTROL_SECTIONS: &[ControlSection] = &[ ControlSection { title: "Overlays", rows: &[ + ControlRow { keys: "M", description: "Mode launcher (Home)" }, + ControlRow { keys: "P", description: "Profile" }, ControlRow { keys: "S", description: "Stats & progression" }, ControlRow { keys: "A", description: "Achievements" }, ControlRow { keys: "L", description: "Leaderboard" }, @@ -192,6 +194,7 @@ const CONTROL_SECTIONS: &[ControlSection] = &[ ControlRow { keys: "F11", description: "Toggle fullscreen" }, ControlRow { keys: "Esc", description: "Pause / resume" }, ControlRow { keys: "[ / ]", description: "SFX volume down / up" }, + ControlRow { keys: "Enter", description: "Play Again (on the Win Summary)" }, ], }, ];