Files
names/src/lib/version.ts
tonym c7d6812466 feat: saved-names wishlist (#1); style the shared feedback chat-pop with Tailwind (#2)
- ☆ on every card saves it to a browser-only shortlist (localStorage
  names.wishlist, cap 60) shown as a Saved panel with snapshotted
  statuses, Re-check and Copy list.
- SuggestionLightbulb from @otm/account-panel is Tailwind-styled and
  names had no Tailwind, so it rendered as a bare button. Added Tailwind
  (preflight off, dark class pinned), scoped element CSS to .wrap and
  mounted the widget outside it.
- v0.2.0

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01XStQKxPfEjrTvWo83KFCxG
2026-08-16 18:14:40 -05:00

34 lines
1.6 KiB
TypeScript

// App version + changelog. The footer shows VERSION as a chip linking to
// /changelog. Bump VERSION and prepend an entry when shipping a user-facing
// change. Same convention as rpo.
export const VERSION = "0.2.0";
export interface ChangelogEntry {
version: string;
date: string; // ISO yyyy-mm-dd
changes: string[];
}
export const CHANGELOG: ChangelogEntry[] = [
{
version: "0.2.0",
date: "2026-08-16",
changes: [
"Saved names: press ☆ on any card to keep it in a shortlist while you keep looking. The list lives in your browser, remembers the availability it last saw, and has Re-check and Copy list buttons.",
"The feedback widget (bottom-right) is now properly styled — it was rendering as a bare unstyled button.",
],
},
{
version: "0.1.0",
date: "2026-08-10",
changes: [
"Initial release: type a few keywords about your business and get brandable name ideas, each checked for domain availability as it appears.",
"Availability comes from the registries themselves over RDAP — no paid API, no key, and it covers about 1,200 extensions.",
"A handful of extensions (.io, .co, .me, .sh, .gg, .us) publish no RDAP server; those fall back to a DNS check and are labelled 'probably free' rather than confirmed.",
"Four naming styles — balanced, real words, coined, and short — plus domain hacks like stud.io and quick.ly.",
"Optional: add your own Anthropic or Gemini API key on the Settings page for AI-generated names. The key stays in your browser and is never sent to our server.",
],
},
];