From d2320bc38ed63fa0d5bcbf98f0d3e9aa40818a56 Mon Sep 17 00:00:00 2001 From: Daniel McCoy Stephenson Date: Sat, 13 Jun 2026 12:49:26 -0600 Subject: [PATCH 01/10] =?UTF-8?q?ux:=20web=20client=20=E2=80=94=20add=20a?= =?UTF-8?q?=20tagline=20explaining=20the=20game=20and=20its=20goal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A new player opening the page saw only the word "FishE" above a save-file menu, with no indication of what the game is or what they're working toward. They had to start playing to infer the point (Nielsen #10 help and documentation; Krug: answer the obvious question before it's asked). The heading now carries a one-line tagline — "fish a seaside village and build a fortune of $10,000" — so the premise and the win condition are clear before the first click. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/ui/webUserInterface.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/webUserInterface.py b/src/ui/webUserInterface.py index 80a0411..f362c61 100644 --- a/src/ui/webUserInterface.py +++ b/src/ui/webUserInterface.py @@ -36,10 +36,11 @@ input { width: 100%; padding: .6rem; font-family: monospace; font-size: 1rem; background: #163345; color: #e0f0ff; border: 1px solid #2a4a5a; border-radius: 4px; } + .tagline { font-size: .8rem; font-weight: normal; color: #7fb0d0; } -

FishE

+

FishE — fish a seaside village and build a fortune of $10,000

Connecting…