* Redesign changelog page with feature highlights and visual hierarchy Major releases now show narrative summaries, feature highlight cards (with image support for screenshots), colored section badges, and contributor avatars. Minor releases stay compact. Adds changelog-media.ts as a supplementary data layer alongside CHANGELOG.md. * Use Next.js Image for optimized loading and GitHub avatar remotes * Add screenshots for Open With and Tab Colors features * Add workspace metadata screenshot * Switch to single-column inline layout, add command palette screenshot * Conductor-style titles, narrower body, narrative descriptions, reorder features * Add pin workspace and tab context menu screenshots, remove subtitle * Add View Changelog link to front page, add DevTools to 0.60.0 * Add CJK input screenshot to 0.60.0 * Read real PNG dimensions at build time, add proper sizes attribute * Fix image overflow: wrap in overflow-hidden container, add max-w-full * Fix CSS cascade: move docs-content styles into @layer base Unlayered CSS beats @layer utilities in the cascade, so .docs-content rules (margins, padding, list-style) were overriding Tailwind utilities on ul, li, h2 elements in the changelog page. Moving them into @layer base lets utilities win without needing !important hacks. * Switch docs-content spacing from margin to padding Margins were collapsing and conflicting with Tailwind layout utilities in the changelog. Padding doesn't collapse and can't interfere with external spacing set by parent containers. * Fix changelog layout: use flex column + inline styles for all spacing Block layout was collapsing when articles had media content (h2, feature divs, section divs all rendered at the same position). Switching to display:flex + flex-direction:column on articles and using inline styles for all spacing guarantees proper vertical stacking regardless of docs-content CSS interference. * Remove border from changelog images * Replace devtools screenshot with cmux inspecting cmux.dev
332 lines
9.7 KiB
TypeScript
332 lines
9.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
import Image from "next/image";
|
|
import { changelogMedia, type VersionMedia } from "./changelog-media";
|
|
|
|
/** Read PNG dimensions from the IHDR chunk (bytes 16-23). */
|
|
function pngDimensions(filePath: string): { width: number; height: number } {
|
|
const abs = path.join(process.cwd(), "public", filePath);
|
|
const buf = fs.readFileSync(abs);
|
|
return {
|
|
width: buf.readUInt32BE(16),
|
|
height: buf.readUInt32BE(24),
|
|
};
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Changelog",
|
|
description:
|
|
"cmux release notes and version history. New features, bug fixes, and changes for the native macOS terminal.",
|
|
};
|
|
|
|
interface ChangelogSection {
|
|
heading: string;
|
|
items: string[];
|
|
}
|
|
|
|
interface ChangelogVersion {
|
|
version: string;
|
|
date: string;
|
|
intro?: string;
|
|
sections: ChangelogSection[];
|
|
}
|
|
|
|
function parseChangelog(markdown: string): ChangelogVersion[] {
|
|
const versions: ChangelogVersion[] = [];
|
|
let current: ChangelogVersion | null = null;
|
|
let currentSection: ChangelogSection | null = null;
|
|
|
|
for (const line of markdown.split("\n")) {
|
|
const versionMatch = line.match(/^## \[(.+?)\] - (.+)$/);
|
|
if (versionMatch) {
|
|
if (current) versions.push(current);
|
|
current = {
|
|
version: versionMatch[1],
|
|
date: versionMatch[2],
|
|
sections: [],
|
|
};
|
|
currentSection = null;
|
|
continue;
|
|
}
|
|
|
|
if (!current) continue;
|
|
|
|
const sectionMatch = line.match(/^### (.+)$/);
|
|
if (sectionMatch) {
|
|
currentSection = { heading: sectionMatch[1], items: [] };
|
|
current.sections.push(currentSection);
|
|
continue;
|
|
}
|
|
|
|
const itemMatch = line.match(/^- (.+)$/);
|
|
if (itemMatch) {
|
|
if (currentSection) {
|
|
currentSection.items.push(itemMatch[1]);
|
|
} else {
|
|
if (!current.sections.length) {
|
|
currentSection = { heading: "", items: [] };
|
|
current.sections.push(currentSection);
|
|
}
|
|
current.sections[current.sections.length - 1].items.push(
|
|
itemMatch[1]
|
|
);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
const trimmed = line.trim();
|
|
if (trimmed && !trimmed.startsWith("#")) {
|
|
current.intro = trimmed;
|
|
}
|
|
}
|
|
|
|
if (current) versions.push(current);
|
|
return versions;
|
|
}
|
|
|
|
function InlineMarkdown({ text }: { text: string }) {
|
|
const parts = text.split(/(`[^`]+`|\[[^\]]+\]\([^)]+\))/g);
|
|
return (
|
|
<>
|
|
{parts.map((part, i) => {
|
|
if (part.startsWith("`") && part.endsWith("`")) {
|
|
return <code key={i}>{part.slice(1, -1)}</code>;
|
|
}
|
|
const linkMatch = part.match(/^\[([^\]]+)\]\(([^)]+)\)$/);
|
|
if (linkMatch) {
|
|
return (
|
|
<a key={i} href={linkMatch[2]}>
|
|
{linkMatch[1]}
|
|
</a>
|
|
);
|
|
}
|
|
return <span key={i}>{part}</span>;
|
|
})}
|
|
</>
|
|
);
|
|
}
|
|
|
|
function formatDate(dateStr: string): string {
|
|
const d = new Date(dateStr + "T00:00:00");
|
|
return d.toLocaleDateString("en-US", {
|
|
month: "long",
|
|
day: "numeric",
|
|
year: "numeric",
|
|
});
|
|
}
|
|
|
|
function HeroImage({ src, version }: { src: string; version: string }) {
|
|
const { width, height } = pngDimensions(src);
|
|
return (
|
|
<div style={{ paddingTop: 16, paddingBottom: 24 }}>
|
|
<div className="overflow-hidden rounded-lg">
|
|
<Image
|
|
src={src}
|
|
alt={`cmux ${version}`}
|
|
width={width}
|
|
height={height}
|
|
sizes="(max-width: 640px) 100vw, 640px"
|
|
className="w-full h-auto"
|
|
priority
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function FeatureImage({ src, alt }: { src: string; alt: string }) {
|
|
const { width, height } = pngDimensions(src);
|
|
return (
|
|
<div style={{ paddingTop: 12 }}>
|
|
<div className="overflow-hidden rounded-lg">
|
|
<Image
|
|
src={src}
|
|
alt={alt}
|
|
width={width}
|
|
height={height}
|
|
sizes="(max-width: 640px) 100vw, 640px"
|
|
className="block w-full max-w-full h-auto"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function FeatureList({ media }: { media: VersionMedia }) {
|
|
if (!media.features?.length) return null;
|
|
|
|
return (
|
|
<div style={{ paddingTop: 20, display: "flex", flexDirection: "column", gap: 24 }}>
|
|
{media.features.map((feature, i) => (
|
|
<div key={i}>
|
|
<p style={{ margin: 0, padding: 0 }}>
|
|
<strong>{feature.title}.</strong>{" "}
|
|
<span className="text-muted">{feature.description}</span>
|
|
</p>
|
|
{feature.image && (
|
|
<FeatureImage src={feature.image} alt={feature.title} />
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ContributorList({ items }: { items: string[] }) {
|
|
return (
|
|
<div className="flex flex-wrap gap-2" style={{ paddingTop: 8 }}>
|
|
{items.map((item, i) => {
|
|
const match = item.match(
|
|
/\[@([^\]]+)\]\((https:\/\/github\.com\/[^)]+)\)/
|
|
);
|
|
if (match) {
|
|
return (
|
|
<a
|
|
key={i}
|
|
href={match[2]}
|
|
className="inline-flex items-center gap-1.5 px-2 py-1 rounded-md border border-border text-[13px] text-muted hover:text-foreground transition-colors no-underline!"
|
|
>
|
|
<Image
|
|
src={`https://github.com/${match[1]}.png?size=48`}
|
|
alt={match[1]}
|
|
width={18}
|
|
height={18}
|
|
className="rounded-full"
|
|
/>
|
|
{match[1]}
|
|
</a>
|
|
);
|
|
}
|
|
return (
|
|
<span key={i} className="text-[13px] text-muted">
|
|
<InlineMarkdown text={item} />
|
|
</span>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function SectionBadge({ heading }: { heading: string }) {
|
|
const lower = heading.toLowerCase();
|
|
|
|
let color = "bg-border/50 text-muted";
|
|
let label = heading;
|
|
|
|
if (lower === "added") {
|
|
color = "bg-emerald-500/10 text-emerald-600 dark:text-emerald-400";
|
|
label = "Added";
|
|
} else if (lower === "changed") {
|
|
color = "bg-blue-500/10 text-blue-600 dark:text-blue-400";
|
|
label = "Changed";
|
|
} else if (lower === "fixed") {
|
|
color = "bg-amber-500/10 text-amber-600 dark:text-amber-400";
|
|
label = "Fixed";
|
|
} else if (lower.startsWith("thanks")) {
|
|
color = "bg-purple-500/10 text-purple-600 dark:text-purple-400";
|
|
label = "Contributors";
|
|
}
|
|
|
|
return (
|
|
<span
|
|
className={`inline-block text-[12px] font-medium px-2 py-0.5 rounded-md ${color}`}
|
|
>
|
|
{label}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
export default function ChangelogPage() {
|
|
const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md");
|
|
const markdown = fs.readFileSync(changelogPath, "utf-8");
|
|
const versions = parseChangelog(markdown);
|
|
|
|
return (
|
|
<div className="max-w-[640px] overflow-hidden">
|
|
<h1 style={{ margin: 0, padding: 0, paddingBottom: 8 }}>Changelog</h1>
|
|
|
|
<div style={{ paddingTop: 32 }}>
|
|
{versions.map((v) => {
|
|
const media = changelogMedia[v.version];
|
|
|
|
return (
|
|
<article
|
|
key={v.version}
|
|
id={`v${v.version}`}
|
|
className="border-t border-border first:border-t-0"
|
|
style={{ display: "flex", flexDirection: "column", padding: "40px 0" }}
|
|
>
|
|
<div style={{ display: "flex", alignItems: "center", gap: 12 }}>
|
|
<a
|
|
href={`#v${v.version}`}
|
|
className="no-underline! hover:no-underline!"
|
|
>
|
|
<span className="inline-block text-[13px] font-mono text-muted bg-code-bg px-2 py-0.5 rounded-md">
|
|
{v.version}
|
|
</span>
|
|
</a>
|
|
<time
|
|
className="text-[13px] text-muted"
|
|
dateTime={v.date}
|
|
>
|
|
{formatDate(v.date)}
|
|
</time>
|
|
</div>
|
|
|
|
{media?.title && (
|
|
<div style={{ paddingTop: 12, margin: 0, fontSize: "1.5rem", fontWeight: 700, letterSpacing: "-0.025em" }}>
|
|
{media.title}
|
|
</div>
|
|
)}
|
|
|
|
{media?.hero && (
|
|
<HeroImage src={media.hero} version={v.version} />
|
|
)}
|
|
|
|
{media && <FeatureList media={media} />}
|
|
|
|
{v.intro && !media && (
|
|
<div className="text-[14px] text-muted italic" style={{ paddingTop: 12 }}>
|
|
{v.intro.replace(/^_/, "").replace(/_$/, "")}
|
|
</div>
|
|
)}
|
|
|
|
<div style={{ paddingTop: 20, display: "flex", flexDirection: "column", gap: 16 }}>
|
|
{v.sections.map((section, i) => {
|
|
const isContributors = section.heading
|
|
.toLowerCase()
|
|
.startsWith("thanks");
|
|
|
|
if (isContributors) {
|
|
return (
|
|
<div key={i}>
|
|
<SectionBadge heading={section.heading} />
|
|
<ContributorList items={section.items} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div key={i}>
|
|
{section.heading && (
|
|
<SectionBadge heading={section.heading} />
|
|
)}
|
|
<ul style={{ margin: 0, paddingTop: 8, paddingBottom: 0, paddingLeft: 24, listStyle: "disc" }}>
|
|
{section.items.map((item, j) => (
|
|
<li key={j} style={{ margin: 0, padding: 0, fontSize: 14, lineHeight: 1.6, color: "var(--muted)" }}>
|
|
<InlineMarkdown text={item} />
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</article>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|