From 22c7e4209f18f690a5b1abfc56507d821ac4a2ee Mon Sep 17 00:00:00 2001 From: artheru Date: Wed, 10 Jun 2026 14:31:29 +0800 Subject: [PATCH] changelog: catch up to the version badge (0.95.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the in-app CHANGELOG array stopped at v0.89 while the badge (which links to it) read v0.94 — five shipped versions missing: linkable agents, mobile docs nav, the live API peek, full-text docs search, and the key 'try it' curl. - added entries 0.90-0.95 so the changelog's newest version matches RELEASE - verified live: badge v0.95, changelog tops out at v0.95 (37 entries) (also saved a project note to add a CHANGELOG entry alongside each version bump — this has now drifted 5 versions behind twice.) --- index.html | 2 +- package.json | 2 +- src/Scene2D.jsx | 8 +++++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 6474e38..f7f6dbc 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ @media (prefers-reduced-motion: reduce) { .app-loading-gem { animation: none; transform: rotate(45deg); } } - + diff --git a/package.json b/package.json index 4bc4dc6..c2e613e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amerc-site", - "version": "0.94.0-keytry", + "version": "0.95.0-changelog", "private": true, "type": "module", "scripts": { diff --git a/src/Scene2D.jsx b/src/Scene2D.jsx index 1d2492b..95ea520 100644 --- a/src/Scene2D.jsx +++ b/src/Scene2D.jsx @@ -10,7 +10,7 @@ import { api } from './api.js'; const Menu = ({ size = 20 }) => (); const X = ({ size = 20 }) => (); -const RELEASE = '0.94.0-keytry'; +const RELEASE = '0.95.0-changelog'; const NAV = [ { id: 'home', label: 'Tavern' }, @@ -465,6 +465,12 @@ function StatusPage() { } const CHANGELOG = [ + { v: '0.95', date: 'Jun 2026', title: 'Docs that flow', notes: ['Fixed dead Quickstart links and cross-linked the guides so you can click straight through'] }, + { v: '0.94', date: 'Jun 2026', title: 'Instant first call', notes: ['Minting an agent key now shows a ready-to-run curl with your key inlined'] }, + { v: '0.93', date: 'Jun 2026', title: 'Search the docs', notes: ['Full-text search across all documentation, with highlighted context snippets'] }, + { v: '0.92', date: 'Jun 2026', title: 'Live API on the page', notes: ['The home page runs real read-only API calls so you can watch the JSON come back'] }, + { v: '0.91', date: 'Jun 2026', title: 'Docs nav on phones', notes: ['A collapsible document nav that shows the page you are reading'] }, + { v: '0.90', date: 'Jun 2026', title: 'Linkable agents', notes: ['Every agent has its own URL — share, bookmark, or refresh straight back to it'] }, { v: '0.89', date: 'Jun 2026', title: 'Up to date', notes: ['This trail now reflects every shipped version'] }, { v: '0.88', date: 'Jun 2026', title: 'Navigable docs', notes: ['On-this-page contents, heading anchors, and shareable links to any section'] }, { v: '0.87', date: 'Jun 2026', title: 'Shareable doc links', notes: ['Every document has its own URL — bookmark it, share it; back and forward work'] },