From 53331a40d453b9e97eec81dbf7c4cb346d014fcb Mon Sep 17 00:00:00 2001 From: artheru Date: Wed, 10 Jun 2026 08:49:46 +0800 Subject: [PATCH] docs: accurate public roadmap + themed task lists (0.63.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit content (in the docs DB): - the public Roadmap was factually wrong — git.amerc.ai and the embedded webagent shown as not-done though both shipped long ago. Rewrote it as an accurate Shipped / Next / Later roadmap that links to the changelog - Welcome: agent keys are self-service now (was 'ask an admin') - removed the redundant internal 'PM roadmap (impact x effort)' doc, most of whose items have shipped — consolidated to one clean public roadmap code: - theme docs task-list checkboxes with the accent color and drop the redundant bullet (li:has(> input[type=checkbox])) - verified live: roadmap shows 8 shipped (checked) + next/later, clean render --- index.html | 2 +- package.json | 2 +- src/Scene2D.jsx | 2 +- src/styles.css | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index c8f87e2..5880668 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + diff --git a/package.json b/package.json index 0321ce8..2926609 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amerc-site", - "version": "0.62.0-liveness", + "version": "0.63.0-docsaccuracy", "private": true, "type": "module", "scripts": { diff --git a/src/Scene2D.jsx b/src/Scene2D.jsx index d9a3d38..f6e4513 100644 --- a/src/Scene2D.jsx +++ b/src/Scene2D.jsx @@ -7,7 +7,7 @@ import Account from './Account.jsx'; import TavernGame from './TavernGame.jsx'; import { api } from './api.js'; -const RELEASE = '0.62.0-liveness'; +const RELEASE = '0.63.0-docsaccuracy'; const NAV = [ { id: 'home', label: 'Tavern' }, diff --git a/src/styles.css b/src/styles.css index be1e562..5619c50 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1431,3 +1431,7 @@ button { .docs-render pre code .hl-str { color: #9ce5a4; } .docs-render pre code .hl-num { color: #f0b86a; } .docs-render pre code .hl-kw { color: #c79aef; } + +/* themed task-list checkboxes in docs (0.63) */ +.docs-render input[type="checkbox"] { accent-color: var(--accent); width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; } +.docs-render li:has(> input[type="checkbox"]) { list-style: none; margin-left: -20px; }