Skip to content

feat(web): configurable fonts and sizes under Settings → Appearance - #5103

Merged
juliusmarminge merged 48 commits into
pingdotgg:mainfrom
StiensWout:agent/web-appearance-fonts
Aug 4, 2026
Merged

feat(web): configurable fonts and sizes under Settings → Appearance#5103
juliusmarminge merged 48 commits into
pingdotgg:mainfrom
StiensWout:agent/web-appearance-fonts

Conversation

@StiensWout

@StiensWout StiensWout commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

What changed

Settings → Appearance gains a Fonts section: four surfaces, each with a family picker and a size slider, a live preview rendered in the resolved family and size, and a per-row reset.

Setting Covers Size range
Interface font everything outside code blocks and the terminal 12–20px
Prompt font the composer textarea and its placeholder only 12–20px
Code font code blocks, diffs, and file previews 10–18px
Terminal font terminal output 8–20px

The family pickers are grouped by category (Sans serif / Monospace) and filtered to faces that are actually installed, probed with canvas metrics — document.fonts.check() reports true for absent families, so it cannot filter anything. "Custom…" accepts any name: it edits a local draft that commits 400ms after typing pauses (or on Enter/blur) and only once the name resolves, so the applied font holds while a partial name is typed.

Cell-grid surfaces stay monospace. The terminal draws on a fixed cell lattice, so a proportional face renders its text narrower than its own cells and strands the cursor to the right. The Code and Terminal pickers offer monospace faces only, and the renderer independently measures the requested family and falls back to the default when it is not monospace, so a previously stored value cannot leave the terminal in that state.

The terminal size adapts to its canvas. The preference is a ceiling: narrow panes (splits, the side panel) slide the rendered size down until a classic 80-column grid fits, down to an 8px legibility floor, and widening slides it back up. The measurement lives in fit(), so drags, splits, and window resizes all pass through it.

The composer context strip degrades instead of colliding. Its controls truncate, and once even truncated labels cannot fit they animate shut to icons (measured from laid-out content, with hysteresis, restoring as space returns).

Under the hood:

  • eight client settings in the contracts schema (four families, four sizes), persisted client-side like the other appearance preferences, all covered by Restore defaults
  • the --font-sans / --font-mono theme tokens move out of @theme inline so Tailwind utilities reference the variables; body, pre/code, and the @pierre/diffs shadow-root hooks route through them
  • the interface size drives the root font size (and with it every rem-based dimension); prompt and code sizes stay in absolute pixels so they do not scale twice
  • custom names are normalized and quoted before reaching CSS or the canvas font shorthand, where an unquoted non-ident name silently voids the whole declaration
  • font application survives async settings hydration, including terminals created while settings were still loading

Validation

  • full web suite (1760 tests), desktop settings tests, contracts tests
  • web + desktop + contracts typecheck, lint, formatting
  • end-to-end against a live dev server: picker filtering, live application per surface, reload persistence, terminal width fitting, and the strip's collapse/restore behaviour

🤖 Generated with Claude Code


Note

Medium Risk
Interface font size drives root rem scaling app-wide, and typography touches terminal rendering and persisted client settings; preview local-fonts denial is an intentional security guard.

Overview
Adds Settings → Appearance → Typography so users can pick interface, prompt, code, and terminal font families and sizes (with optional Advanced per-surface overrides, macOS font smoothing, and live previews on real composer/diff/Ghostty surfaces).

Runtime wiring: new client settings flow through FontAppearanceSync into CSS variables (--font-sans, --font-mono, --font-composer, size tokens); bundled DM Sans / JetBrains Mono are removed in favor of system stacks. Family pickers use the Local Font Access API where available, with canvas/DOM probing for installed and monospace faces.

Terminal: Ghostty honors preferences, rejects proportional fonts, shrinks size to keep ~80 columns in narrow panes, and reapplies fonts after async hydration. Composer context strip collapses labels to icons when space is tight. Preview browser sessions deliberately omit local-fonts permission so untrusted pages cannot fingerprint installed fonts.

Reviewed by Cursor Bugbot for commit 284ea9f. Bugbot is set up for automated code reviews on this repo. Configure here.

Note

Add configurable font family and size controls to Settings → Appearance

  • Adds a Typography section to the Appearance settings panel with font family and size controls for interface, prompt, code, and terminal surfaces, each with a live preview.
  • Introduces a FontFamilyPicker component that enumerates installed local fonts via the Local Font Access API with search and virtualized list rendering; falls back to a validated text input when the API is unavailable.
  • Adds CSS variable-driven typography (--font-sans, --font-mono, --font-composer, --font-size-prompt, --font-size-code) applied to document.documentElement at runtime via a new FontAppearanceSync root component.
  • Removes bundled DM Sans and JetBrains Mono font packages; the app now uses system UI fonts by default with user-configurable overrides.
  • Terminal font rendering now rejects proportional families, sanitizes family name quoting, and auto-reduces font size to ensure at least 80 columns fit within the available width.
  • Risk: .glass-opacity-slider CSS class and --glass-slider-* custom properties are renamed to .settings-slider / --settings-slider-*; any external references will break.

Macroscope summarized 284ea9f.

closes #4376

Adds a Fonts section to Appearance with four client-persisted
preferences — interface (sans), composer, code, and terminal font
families. Family only; sizing is deliberately left for a follow-up.

- contracts: four FontFamilyPreference client settings (empty string
  means default), patchable per key
- the font theme tokens move out of the inline Tailwind theme so
  utilities reference the variables, and a FontAppearanceSync applies
  custom families as CSS variable overrides with the default stacks
  kept as fallbacks
- the composer gets its own --font-composer variable (defaults to the
  sans stack) applied on the editor surface, so prompt writers can use
  a mono face without changing the rest of the app
- the terminal preference feeds the Ghostty surface's font option and
  live setFont from pingdotgg#4860's groundwork; the bundled Nerd Font symbols
  fallback keeps prompt glyphs on any custom face
- each settings row shows a live preview rendered in the resolved
  stack, with per-row reset; custom names are normalized and quoted
  through tested pure helpers

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown

Important

Review skipped

Auto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 8d549a6f-3824-4f8b-9a41-f675fb1ef973

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@github-actions github-actions Bot added vouch:unvouched PR author is not yet trusted in the VOUCHED list. size:L 100-499 changed lines (additions + deletions). labels Jul 31, 2026
Comment thread apps/web/src/components/ThreadTerminalDrawer.tsx
StiensWout and others added 2 commits July 31, 2026 13:36
…views

Replaces the free-text family inputs with dropdowns of curated faces
filtered through document.fonts.check so only fonts that will actually
render are offered (bundled webfonts always appear); a Custom… option
keeps arbitrary families possible. Each option renders in its own face,
and every row gains a preview card styled like the real surface — chat
text, a mini composer, a highlighted code snippet, and a dark terminal
prompt — rendered in the resolved stack, matching mobile's Appearance
screen style.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The pre and code elements in the preview cards carried the preflight
mono font-family, overriding the card's resolved stack, so those two
previews never changed with the dropdown. They inherit now; also brace
the comment-looking literal flagged by lint.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread apps/web/src/appearanceFonts.ts Outdated
@StiensWout StiensWout changed the title feat(web): configurable font families under Settings → Appearance [WIP] feat(web): configurable font families under Settings → Appearance Jul 31, 2026
StiensWout and others added 3 commits July 31, 2026 13:40
…views

document.fonts.check() answers true for families that are not installed
(nothing needs loading), so the dropdowns offered fonts that silently
fell back to the default stack and the sans-side previews appeared not
to update. Availability now comes from canvas metric probing: a family
counts as available when substituting it before a generic changes the
measured advance.

The terminal preview card also follows the app theme now — the real
terminal renders on the app background in light mode, so a hardcoded
dark card was inconsistent theming.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The base styles hardcoded literal font stacks on body and pre/code, so the
runtime --font-sans/--font-mono overrides from Settings -> Appearance only
reached the preview cards. Reference the theme tokens instead; the literal
stacks stay single-sourced in the @theme block.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Comment thread apps/web/src/components/ThreadTerminalDrawer.tsx Outdated
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
@macroscopeapp

macroscopeapp Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Approvability

Verdict: Needs human review

This PR introduces a new user-facing feature (configurable fonts and sizes in Settings → Appearance) with substantial new components, font picker UI with Local Font Access API integration, and changes to how fonts render across all app surfaces. New features of this scope warrant human review.

You can customize Macroscope's approvability policy. Learn more.

Client settings hydrate after mount, which dropped two things on reload: the
terminal font (setFont fired while the surface was still loading, so the
preference never reached the created terminal) and the custom-font input
(customMode initialized from the pre-hydration empty value, leaving the
field hidden behind a "Custom" trigger). The terminal re-applies the current
preference once the surface exists, and the input visibility now derives
from the value itself.

Also groups mixed dropdowns (composer) into labeled Sans serif / Monospace
sections and removes the composer's redundant default entry - the reset
affordance already returns it to following the interface font.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@github-actions github-actions Bot added size:XL 500-999 changed lines (additions + deletions). and removed size:L 100-499 changed lines (additions + deletions). labels Jul 31, 2026
StiensWout and others added 3 commits July 31, 2026 14:16
…om names

Every font dropdown now offers the full catalog split into bold Sans serif /
Monospace sections, so any surface can point at any face. The custom input
edits a draft that only commits once the typed name probes as an installed
font - the current font holds (and the field flags invalid) while a partial
or unknown name is typed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… tokens

The @pierre/diffs surfaces (file previews, chat diffs, annotatable code,
search lines) render inside shadow roots with their own literal font stack
as fallback, so the code font preference never reached them. The library
consults --diffs-font-family/--diffs-header-font-family as override hooks
and custom properties inherit across the shadow boundary, so defining the
hooks once at :root covers every consumer.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…r preview

Restore defaults now lists and resets the four font-family preferences (the
General page's restore is intentionally global), and the composer preview
falls back to the resolved interface stack so it matches the runtime
var(--font-composer) chain instead of the bare default sans stack.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Per review direction the interface and code fonts stay on the theme
defaults; only the prompt textarea (people who prefer writing prompts in a
mono face) and the terminal remain configurable. The textarea setting is
retitled to make its scope explicit - the rest of the composer follows the
interface font.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@StiensWout StiensWout changed the title [WIP] feat(web): configurable font families under Settings → Appearance feat(web): configurable prompt textarea and terminal fonts under Settings → Appearance Jul 31, 2026
@StiensWout StiensWout changed the title feat(web): configurable prompt textarea and terminal fonts under Settings → Appearance feat(web): configurable font families under Settings → Appearance Jul 31, 2026
StiensWout and others added 5 commits July 31, 2026 14:40
An emptied custom font field now resets the preference to the default
instead of silently keeping the previous font behind an empty-looking
input; partial or unknown names still hold the current font while typing.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The final split keeps every surface configurable: interface (labels,
controls, messages, composer chrome), prompt (textarea and placeholder
only), code (code blocks, diffs, file previews), and terminal. Every
dropdown now offers the same Default entry, fixing the prompt/terminal
inconsistency.

The custom input no longer commits on every keystroke: it edits a local
draft and commits 400ms after typing pauses (or on Enter/blur), so the app
does not reflow mid-word and the unknown-name flag waits for the pause.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- Quote custom terminal families before they reach the canvas font string:
  a non-ident name ("3270 Nerd Font", "M+ 1m") made the whole string
  invalid CSS, so the assignment silently kept the previous font.
- Point the DM Sans catalog entry at the registered "DM Sans Variable"
  family; the bundled webfont never registers plain "DM Sans", so the
  option rendered in the serif fallback and only applied by coincidence.
- Cap the custom input at the schema's 200-character limit.
- Cover fontOptionCategories and non-ident quoting with tests.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The custom input now replaces the dropdown instead of stacking beneath it,
so entering custom mode no longer grows the row and pushes the rest of the
page down; it autofocuses, and Escape discards uncommitted typing without
closing the settings page.

Typefaces differ in x-height at the same pixel size (DM Sans 0.51 vs
JetBrains Mono 0.55), so switching family also changed apparent text size.
Each surface now carries a font-size-adjust measured from its own default
stack: the platform default renders unchanged, and any chosen font is
scaled to match it. Measurements are re-taken once webfonts finish loading,
since an early probe describes the fallback face rather than the default.

The sidebar PR number follows the interface font (tabular digits keep it
from reflowing) instead of the code font.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Comment thread apps/web/src/appearanceFonts.ts
Comment thread apps/web/src/components/composerInlineChip.ts
The section defaults to two rows - one sans, one monospace - with the
demos showing every surface each choice reaches. An Advanced switch in
the section header reveals the per-surface rows (prompt, terminal,
anti-aliasing); the state persists locally, and a settings-search jump
to a hidden row flips the switch for the session so the target exists.
The cascade behind the simple view is real: the terminal now inherits
the monospace preference unless overridden.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread apps/web/src/components/settings/SettingsPanels.tsx
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Comment thread apps/web/src/components/settings/SettingsPanels.tsx Outdated
Comment thread apps/web/src/components/settings/SettingsPanels.logic.ts Outdated
- Keyboard selection commits: the combobox commits through
  onValueChange instead of per-item clicks, so Enter on a highlighted
  font works, and keyboard highlights scroll the virtualized list into
  view the way the branch selector does.
- The picker popup opens after mount instead of mounting open, so the
  exit transition has a style baseline and close cannot wedge.
- Preview sessions no longer grant local-fonts: untrusted preview
  content must not read the user's installed-font fingerprint. The
  app's own picker runs in the main window session.
- The simple-mode Monospace row keeps the code-font search anchor
  under its custom title.
- A settings-search jump to font smoothing on non-macOS no longer pins
  Advanced on: the target set is platform-gated and each jump expands
  at most once.
- The Advanced preference persists through the shared useLocalStorage
  hook instead of hand-rolled helpers.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

@cursor cursor Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit deb9252. Configure here.

if (lastExpandedTargetRef.current === searchTargetId) return;
lastExpandedTargetRef.current = searchTargetId;
setAdvanced(true);
}, [searchTargetId, setAdvanced]);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Repeat search skips Advanced expand

Medium Severity

The lastExpandedTargetRef isn't reset when the search target is cleared. This prevents the "Advanced" typography section from expanding on subsequent searches for the same advanced setting, making the target unscrollable.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit deb9252. Configure here.

juliusmarminge and others added 3 commits August 5, 2026 00:27
The input-until-focused flow exists only because raising the browser's
local-fonts prompt needs a user gesture. When the permission is already
granted - Electron approves silently with no prompt UI, and a browser
that granted once reports granted on return visits - no gesture is
needed, so the rows probe the Permissions API at mount and render the
picker right away. "prompt" and "denied" keep the focus-driven flow.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The parse cache hands back shared mutable file objects, and a FileDiff
instance keys its render and highlight bookkeeping on them - the same
reason DiffPanel scopes its cache per theme. With the simple and
advanced typography views both consuming one cached parse, a remounted
preview could inherit stale already-highlighted state and render plain
text. Each mount now parses under its own scope.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The interactive FileDiff's mount lifecycle can race the shared shiki
singleton when the typography views remount it - its render cache is
seeded highlighted-before-highlighting, so a lost race locks in an
unhighlighted frame permanently. The preview needs no interactivity,
so it now renders once per theme through the SSR pipeline (which
always awaits the highlighter before emitting HTML) and injects the
finished markup into a shadow root, the same way FileDiff hosts it.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@juliusmarminge
juliusmarminge merged commit 8eca200 into pingdotgg:main Aug 4, 2026
16 of 17 checks passed
@shubham-cpp

Copy link
Copy Markdown

@juliusmarminge the goat

github-actions Bot added a commit to omarcresp/t3code-flake that referenced this pull request Aug 5, 2026
## What's Changed
* fix(web): better right panel (new diffs styling) by @maria-rcks in pingdotgg/t3code#5260
* fix(server): keep regenerated titles on topic by @t3dotgg in pingdotgg/t3code#5365
* refactor(server): make title prompts plaintext by @t3dotgg in pingdotgg/t3code#5368
* feat(web): configurable fonts and sizes under Settings → Appearance by @StiensWout in pingdotgg/t3code#5103
* feat(sidebar-v2): bring back thread pinning by @t3dotgg in pingdotgg/t3code#5312
* feat(web): make pairing QR codes actually scannable, with endpoint choice by @t3dotgg in pingdotgg/t3code#5360
* fix(desktop,web): improve in-app browser shortcuts and URL behavior by @t3dotgg in pingdotgg/t3code#4703
* fix(web): prevent legacy model picker layout shift by @FllipEis in pingdotgg/t3code#5349
* fix(server): allow remote updates with database migrations by @t3dotgg in pingdotgg/t3code#5374


**Full Changelog**: pingdotgg/t3code@v0.0.32-nightly.20260804.1000...v0.0.32-nightly.20260805.1002

Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.32-nightly.20260805.1002
H-Ekana added a commit to H-Ekana/v3code that referenced this pull request Aug 5, 2026
The merge resolution kept "DM Sans Variable"/"JetBrains Mono" in --font-sans
and --font-mono on the assumption they were fork branding. They were not:
those stacks are byte-identical to the merge base, and upstream's pingdotgg#5103
deliberately removed the bundled @fontsource packages, their imports, and the
stacks together so Settings -> Appearance can supply the family instead.
Keeping the names would have left the CSS asking for fonts the app no longer
ships.

Co-Authored-By: Claude <noreply@anthropic.com>
phoenixtail26 added a commit to phoenixtail26/t3code that referenced this pull request Aug 5, 2026
31 upstream commits (through 3c5bdb8). Three conflicts, all in fork
contact files:

- apps/server/src/http.ts: upstream replaced the hand-rolled
  compression middleware with HttpMiddleware.compression(). Dropped the
  stale middleware from our side, kept the fork's static cache-header
  block (HTML_SHELL_CACHE_HEADERS / IMMUTABLE_ASSET_CACHE_HEADERS /
  isFingerprintedAsset); its response-site usages auto-merged.
- apps/web/src/components/SidebarV2.tsx: upstream expanded the
  useThreadActions destructure for thread pinning (pingdotgg#5312). Took theirs,
  re-appended the fork's `const forkThread = useForkThread()`.
- apps/web/src/components/settings/SettingsPanels.tsx: upstream
  relocated the word-wrap row into the new typography area (pingdotgg#5103).
  Dropped the stale word-wrap block, kept the fork's
  <ExternalSessionsSettingRow /> at the end of the Appearance section.

Tripwire reported zero dropped fork lines. pnpm-lock.yaml auto-merged
and `corepack pnpm install --lockfile-only` confirmed it consistent.
vp run typecheck and vp check both clean (0 errors, 0 warnings).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
cursor Bot pushed a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…ingdotgg#5103)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
cursor Bot pushed a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…ingdotgg#5103)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
cursor Bot pushed a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…ingdotgg#5103)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
cursor Bot pushed a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…ingdotgg#5103)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
cursor Bot pushed a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…ingdotgg#5103)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
cursor Bot added a commit to aaditagrawal/t3code that referenced this pull request Aug 6, 2026
…arance-features-63f7

sync: port upstream appearance fonts, sidebar pinning, scannable pairing QR, and update migrations (pingdotgg#5103pingdotgg#5374)
vortechron pushed a commit to vortechron/void that referenced this pull request Aug 7, 2026
Port the non-font hunks from upstream pingdotgg#5384. The FontFamilyPicker, SettingsFontPreviews, and SettingsPanels hunks remain omitted because configurable fonts pingdotgg#5103 was intentionally rejected.

Partial upstream commit: 41ebf22
stevesarmiento added a commit to stevesarmiento/harness that referenced this pull request Aug 7, 2026
…ffect beta.103

67 upstream commits (through 6b73b3d): paginated thread loading with
user-anchored turn windows (pingdotgg#5493), contract-backed fonts (pingdotgg#5103),
subagent/workflow observability agents panel (pingdotgg#5219), sidebar-v2 thread
pinning (pingdotgg#5312, migrations 036/037), scannable pairing QR (pingdotgg#5360), MCP
tool-result trimming (pingdotgg#5482), renderer OOM containment (pingdotgg#5148), tunnel
survives updates/stops, terminal polish batch, forward-compat
ServerProviders decode (pingdotgg#5327), Effect beta.103, many fixes.

Forma preserved: composer surface/footer, ComposerMetaBar, diff panel
skin, RightPanelTabs Forma strip/icons with BOTH componentPreview and
agents surfaces, sidebar tone map, forma:// CORS origins, ~/.forma,
fork migrations 935-941 after upstream 036/037, fork contract fields
alongside fonts/threadPinning. Fonts unification starts (terminal now
settings-driven); fix-forward follows.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
stevesarmiento added a commit to stevesarmiento/harness that referenced this pull request Aug 7, 2026
Fix-forward:
- ChatView: dedupe RightPanelTabs import, onAddAgents wired at all three
  surface mounts alongside onAddComponentPreview
- Sidebar.logic: Monitoring tone/pill entries; stale colorClass returns
  converted to toneClass/glyph shape
- SidebarV2 duplicate destructure; DiffPanel Button/RefreshCwIcon imports;
  ConnectionsSettings TriangleAlertIcon; SettingsFontPreviews codeContexts
- ClaudeAdapter: drop fork-era is_error early return so aborted_tools maps
  to interrupted (pingdotgg#5557 behavior + test)
- fork thread.forked projection upsert gains pinnedAt

Fonts unification (pingdotgg#5103 engine, Forma skin):
- Interface panel Typography now reads/writes settings (fontSizeInterface,
  fontSizeCode, fontSmoothing) — synced across devices; link row to the
  full font-family pickers
- Forma css utilities bridged to the engine: --app-code-font-size* derive
  from --font-size-code preserving the 12/11/13 default scale
- terminal's old localStorage sizing removed (settings-driven via merge)
- one-time migration of forma:interface-appearance sizes into settings,
  default-guarded so other-device choices are never clobbered

typecheck exit 0; server 1966 passed; web suites green.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
github-actions Bot added a commit to omarcresp/t3code-flake that referenced this pull request Aug 7, 2026
## What's Changed
* fix(mobile): reduce thread feed scroll jank by @gabrielelpidio in pingdotgg/t3code#4874
* fix(web): restore sidebar v2 thread actions and terminal icon by @Noojuno in pingdotgg/t3code#4712
* fix(web): settle button now works on hover, not just right-click by @t3dotgg in pingdotgg/t3code#4905
* fix(clients): disable add project while disconnected by @StiensWout in pingdotgg/t3code#4834
* fix(composer): hide default Codex service tier by @maxktz in pingdotgg/t3code#4784
* docs: link iOS and Android app store downloads by @t3dotgg in pingdotgg/t3code#4902
* fix(web): align remote server update action by @StiensWout in pingdotgg/t3code#4731
* fix(connect): suggest a serve command that matches how you ran connect by @t3dotgg in pingdotgg/t3code#4897
* fix(mobile): stop shared content errors in Personal Team builds by @t3dotgg in pingdotgg/t3code#4943
* perf(mobile): sends respond instantly, thread opens stop freezing by @t3dotgg in pingdotgg/t3code#4882
* fix(web): show Codex fast mode as a bolt by @t3dotgg in pingdotgg/t3code#4947
* docs: seed worktrees with a copy of real userdata instead of banning it by @t3dotgg in pingdotgg/t3code#4949
* fix(mobile): support dragged images in the composer by @t3dotgg in pingdotgg/t3code#4953
* fix(mobile): stop long iOS threads from jumping while scrolling up by @t3dotgg in pingdotgg/t3code#4867
* fix(web): keep worktree default when switching a draft's machine by @t3dotgg in pingdotgg/t3code#4964
* perf(mobile): reconnect environments immediately on resume by @t3dotgg in pingdotgg/t3code#4878
* feat(web): pasting a huge screenshot now compresses it instead of erroring by @t3dotgg in pingdotgg/t3code#4967
* feat(web): regenerate thread titles from sidebar by @t3dotgg in pingdotgg/t3code#4810
* fix(web): show server update progress through reconnect by @t3dotgg in pingdotgg/t3code#4903
* feat(search): find threads by conversation content by @t3dotgg in pingdotgg/t3code#4959
* fix: marketing site Vercel builds no longer die after ~100 deploys by @t3dotgg in pingdotgg/t3code#4975
* docs: split user and maintainer docs, fix 100+ stale claims by @t3dotgg in pingdotgg/t3code#4807
* fix(web): server updates no longer look like warnings by @t3dotgg in pingdotgg/t3code#4992
* fix(connect): reboots no longer strand the relay link, 403s now say why by @t3dotgg in pingdotgg/t3code#4988
* Add project file picker (⌘P) and project content search (⇧⌘F) by @jakeleventhal in pingdotgg/t3code#4855
* Check for mobile app updates on launch by @juliusmarminge in pingdotgg/t3code#4958
* fix(mobile): support pre-Liquid-Glass iOS bottom toolbar by @gabrielelpidio in pingdotgg/t3code#4984
* fix(server): restore PR detection without HOME by @StiensWout in pingdotgg/t3code#4985
* fix(web): fill fast mode icon by @maria-rcks in pingdotgg/t3code#5004
* fix: cache project favicons across web and mobile by @gabrielelpidio in pingdotgg/t3code#4767
* perf(ci): cut stale runs and redundant setup by @t3dotgg in pingdotgg/t3code#4802
* style(web): make scroll-to-end pill translucent by @maria-rcks in pingdotgg/t3code#5036
* fix(desktop): bump Clerk Electron SDK to 0.0.24 and register t3code:// scheme on Linux by @juliusmarminge in pingdotgg/t3code#5015
* perf(server): cache default branch name and origin existence across status refreshes by @UtkarshUsername in pingdotgg/t3code#5008
* feat(shared): support shorthand (major-only) versions in the semver helpers by @arhxam in pingdotgg/t3code#5027
* fix(mobile): remove unnecessary photo library permission by @skjiisa in pingdotgg/t3code#4929
* fix(shared): lenient JSON parser deletes commas inside string values by @arhxam in pingdotgg/t3code#5025
* fix(mobile): default bare IP pairing to HTTP by @Lucenx9 in pingdotgg/t3code#4990
* fix(mobile): restore iOS Threads branding by @PixPMusic in pingdotgg/t3code#4862
* chore: add mobile issue template area by @MaxAnderson95 in pingdotgg/t3code#4895
* fix(desktop): link release notes from the update downloaded toast by @Sy-D in pingdotgg/t3code#4771
* fix(mobile): accept Android clipboard images in composer by @adityavardhansharma in pingdotgg/t3code#4836
* fix(mobile): show the correct build channel in Android's Threads page header by @PixPMusic in pingdotgg/t3code#4861
* fix(contracts): decode growing config unions forward-compatibly by @juliusmarminge in pingdotgg/t3code#5055
* fix(mobile): server model, worktree, and origin preferences now apply to new tasks by @t3dotgg in pingdotgg/t3code#5064
* fix(ci): repair the mobile showcase screenshots workflow by @juliusmarminge in pingdotgg/t3code#5057
* fix(ci): capture iPad App Store screenshots in landscape by @PixPMusic in pingdotgg/t3code#5065
* fix(oxlint-plugin): Resolve the oxlint bin without assuming a pnpm layout by @mwolson in pingdotgg/t3code#5066
* feat(cli): `npx t3 pair` - generate QR code from a running server by @t3dotgg in pingdotgg/t3code#4955
* fix(server): self-update no longer rolls itself back on restart by @t3dotgg in pingdotgg/t3code#5095
* fix(ci): rotate iPad showcase captures without Simulator UI scripting by @juliusmarminge in pingdotgg/t3code#5094
* feat(web): render terminals with libghostty-vt by @StiensWout in pingdotgg/t3code#4860
* refactor: move the canonical libghostty-vt vendor to the repository root by @StiensWout in pingdotgg/t3code#5102
* feat(mobile): add thread snoozing by @gabrielelpidio in pingdotgg/t3code#5053
* feat(mobile): make settled threads collapsible by @PixPMusic in pingdotgg/t3code#5056
* follow-up normalization after #4700. by @shivamhwp in pingdotgg/t3code#4498
* feat(web): search threads from the sidebar by @shivamhwp in pingdotgg/t3code#4769
* feat(web): add settings sidebar search by @shivamhwp in pingdotgg/t3code#4682
* fix: threads with open PRs no longer auto-settle by @t3dotgg in pingdotgg/t3code#5151
* fix(server): bound thread catch-up replay and stop full-DB snapshot hydration by @t3dotgg in pingdotgg/t3code#5147
* fix(server): follow branch drift in dedicated worktrees so PRs link to their thread by @t3dotgg in pingdotgg/t3code#5159
* fix(server): make remote updates rollback-safe by @t3dotgg in pingdotgg/t3code#5181
* fix(web): stop settle controls overlapping the status label by @ipanasenko in pingdotgg/t3code#4574
* fix: normalize app icon glyph sizing by @t3-code[bot] in pingdotgg/t3code#5202
* fix(server): surface cloudflared FTL/PNC relay logs as warnings, not debug by @arhxam in pingdotgg/t3code#5076
* fix(server): stop npx service updates from silently leaving the old server running by @t3dotgg in pingdotgg/t3code#5217
* feat: fold legacy models into separate menus by @t3dotgg in pingdotgg/t3code#5190
* fix(desktop): claim the t3code:// scheme default on Linux at startup by @juliusmarminge in pingdotgg/t3code#5054
* fix(web): polish interface spacing by @maria-rcks in pingdotgg/t3code#5252
* fix(desktop): Niri/Hyprland - Linux secret storage backend by @mwolson in pingdotgg/t3code#2916
* fix(web): match loading screen to dark theme by @t3-code[bot] in pingdotgg/t3code#5303
* fix(web): blink the terminal cursor again by @StiensWout in pingdotgg/t3code#5314
* fix(terminal): protect held Ctrl/Cmd+W close shortcut by @StiensWout in pingdotgg/t3code#5322
* fix(server): strip replayable terminal queries from history by @StiensWout in pingdotgg/t3code#5319
* fix(contracts): decode ServerProviders forward-compatibly by @Brechard in pingdotgg/t3code#5327
* fix(web): simplify chat code blocks by @t3-code[bot] in pingdotgg/t3code#5301
* fix(web): align multiline error alert controls by @t3-code[bot] in pingdotgg/t3code#5304
* Upgrade Effect to beta.103 by @juliusmarminge in pingdotgg/t3code#5331
* fix(web): increase tooltip z-index to overlay popovers and menus by @naMqe-h in pingdotgg/t3code#5326
* fix(server): use a Cursor todo's title when its content is blank by @arhxam in pingdotgg/t3code#5073
* fix(ssh): isolate managed tunnel processes by @nateEc in pingdotgg/t3code#4347
* fix(server): scrub AppImage XDG_DATA_DIRS and GSETTINGS_SCHEMA_DIR from terminals by @arhxam in pingdotgg/t3code#5075
* fix(mobile): show correct provider icons for Grok, Cursor, and OpenCode by @Wraient in pingdotgg/t3code#4586
* fix(web): stop the chat timeline reading through the provider status banner by @Bil0000 in pingdotgg/t3code#5353
* fix(desktop,web): contain renderer memory growth and recover from renderer OOM crashes by @t3dotgg in pingdotgg/t3code#5148
* fix(server): generate durable thread titles by @t3dotgg in pingdotgg/t3code#5357
* fix(web): better right panel (new diffs styling) by @maria-rcks in pingdotgg/t3code#5260
* fix(server): keep regenerated titles on topic by @t3dotgg in pingdotgg/t3code#5365
* refactor(server): make title prompts plaintext by @t3dotgg in pingdotgg/t3code#5368
* feat(web): configurable fonts and sizes under Settings → Appearance by @StiensWout in pingdotgg/t3code#5103
* feat(sidebar-v2): bring back thread pinning by @t3dotgg in pingdotgg/t3code#5312
* feat(web): make pairing QR codes actually scannable, with endpoint choice by @t3dotgg in pingdotgg/t3code#5360
* fix(desktop,web): improve in-app browser shortcuts and URL behavior by @t3dotgg in pingdotgg/t3code#4703
* fix(web): prevent legacy model picker layout shift by @FllipEis in pingdotgg/t3code#5349
* fix(server): allow remote updates with database migrations by @t3dotgg in pingdotgg/t3code#5374
* fix(mcp): unblock Kimi models in OpenCode with preview tools by @hwanseoc in pingdotgg/t3code#5128
* fix(web): clear main branch lint warnings by @t3dotgg in pingdotgg/t3code#5384
* fix(mobile): preserve grouped project workspaces by @shivamhwp in pingdotgg/t3code#4642
* fix(mobile): prevent Android thread search crash by @shivamhwp in pingdotgg/t3code#5386
* fix(web): truncate long project switcher names by @FllipEis in pingdotgg/t3code#5348
* fix(mobile): avoid double dividers between thread sections by @shivamhwp in pingdotgg/t3code#5391
* fix(web): keep the composer command menu anchored to the composer by @StiensWout in pingdotgg/t3code#5336
* fix(web): restore terminal link hover styles by @StiensWout in pingdotgg/t3code#5382
* fix(ci): isolate releases from shared API rate limits by @t3dotgg in pingdotgg/t3code#5394
* fix(web): keep model picker shortcuts in sync by @t3dotgg in pingdotgg/t3code#5400
* fix(web): keep terminal font settings reliable by @StiensWout in pingdotgg/t3code#5397
* Enrich terminal font previews by @juliusmarminge in pingdotgg/t3code#5428
* fix(web): preserve terminal font size when splitting by @t3-code[bot] in pingdotgg/t3code#5444
* Prevent terminal loading flash by @juliusmarminge in pingdotgg/t3code#5432
* fix: reconnect faster after remote server updates by @t3dotgg in pingdotgg/t3code#5404
* feat: native subagent & workflow observability by @t3dotgg in pingdotgg/t3code#5219
* perf(server): stop shipping full MCP tool results in thread payloads by @t3dotgg in pingdotgg/t3code#5482
* fix(web): closed plan sidebar stays closed when returning to a thread by @t3dotgg in pingdotgg/t3code#5484
* fix: respect time format for sidebar snooze by @huxcrux in pingdotgg/t3code#4438
* fix: smooth remote server updates by @t3dotgg in pingdotgg/t3code#5470
* fix(server): drop superseded tool updates from snapshots by @t3dotgg in pingdotgg/t3code#5483
* fix(web): clarify auto permission fallback by @t3-code[bot] in pingdotgg/t3code#5431
* fix(acp): keep unknown approvals actionable by @t3-code[bot] in pingdotgg/t3code#5430
* fix(mobile): stop thread messages reading through pending cards by @carlosricojr in pingdotgg/t3code#5450
* fix(web): align composer inline chips with prompt text by @StiensWout in pingdotgg/t3code#5495
* fix(web): clear woke state on explicit thread actions by @StiensWout in pingdotgg/t3code#5486
* fix(server): skip origin fetch when creating worktrees in repos without an origin remote by @t3dotgg in pingdotgg/t3code#5556
* fix(web): update tooltip no longer dismisses when scrolling release notes by @t3dotgg in pingdotgg/t3code#5547
* fix(server): stop showing commit/push/PR notices as errors in the work log by @t3dotgg in pingdotgg/t3code#5559
* fix(web): show remote environment for non-Git projects by @t3dotgg in pingdotgg/t3code#5555
* fix(server): stopping a Claude thread no longer shows an ede_diagnostic error by @t3dotgg in pingdotgg/t3code#5557
* fix(web): show one toast when snoozing threads in bulk by @t3dotgg in pingdotgg/t3code#5560
* fix(server): let stopped threads settle immediately by @t3dotgg in pingdotgg/t3code#5553
* feat: paginate thread loading with user-anchored turn windows by @t3dotgg in pingdotgg/t3code#5493
* fix: prevent reconnect loops during server stalls by @gfsaaser24 in pingdotgg/t3code#5561
* fix(server): settle stopped Claude subagents by @t3dotgg in pingdotgg/t3code#5568
* fix: scrolling up during a running thread no longer snaps back to the bottom by @t3dotgg in pingdotgg/t3code#5566
* fix(server): one disconnecting client no longer blocks every reconnect by @t3dotgg in pingdotgg/t3code#5572
* test(server): catch client transfer regressions in CI by @t3dotgg in pingdotgg/t3code#5350
* fix(web): stop the "requests are slow" warning from firing on every provider update by @t3dotgg in pingdotgg/t3code#5570
* fix(web): keep agent panel rows stable by @t3dotgg in pingdotgg/t3code#5569
* docs: ship production T3 Connect public config in .env.example by @t3dotgg in pingdotgg/t3code#5573
* fix(web): plans stop hijacking the UI, fold into chat instead by @t3dotgg in pingdotgg/t3code#5558
* feat(web): remove Build/Plan toggle from the composer by @t3dotgg in pingdotgg/t3code#5551
* feat(web): per-device provider settings by @t3dotgg in pingdotgg/t3code#4479
* fix(mobile): invisible T3 Connect devices can now be seen and removed by @t3dotgg in pingdotgg/t3code#5563
* fix: add missing space before 'GitHub releases page' link on download page by @Mateleo in pingdotgg/t3code#4511
* fix(web): stop the sidebar "Working" label from pulsing by @t3dotgg in pingdotgg/t3code#5580
* feat(web): add modular theme library by @StiensWout in pingdotgg/t3code#5226
* fix(web): reading a thread clears Done; Woke is dismissible by @t3dotgg in pingdotgg/t3code#5579
* perf(dev): faster cold-start for dev web serving by @t3dotgg in pingdotgg/t3code#5584
* fix(dev): agents get --share right on the first try by @t3dotgg in pingdotgg/t3code#5586
* fix(mobile): improve keyboard avoiding by @jmeistrich in pingdotgg/t3code#5451
* fix(web): live background-work banner no longer hides behind the update notice by @t3dotgg in pingdotgg/t3code#5595
* fix(web): stabilize chat timeline positioning by @jmeistrich in pingdotgg/t3code#5449
* feat(server): record runtime mode per turn and on mode changes by @t3dotgg in pingdotgg/t3code#5593
* feat(web): thread actions from the chat header title by @t3dotgg in pingdotgg/t3code#5592
* fix(mobile): avoid iOS terminal reset on clear by @justynleung in pingdotgg/t3code#5440
* fix(mobile): pad scroll views above Android nav bar by @StoneCotton in pingdotgg/t3code#5415
* fix(mobile): keep Android chat text from showing through the composer by @PollyGlot in pingdotgg/t3code#5582
* fix(mobile): repair Clerk auth navigation headers by @gabrielelpidio in pingdotgg/t3code#5140
* Bump mobile app version to 1.0.2 by @juliusmarminge in pingdotgg/t3code#5588
* feat(web): click the pin icon to unpin a thread by @UtkarshUsername in pingdotgg/t3code#5578
* fix(web): show the correctly matching shortcut in new thread button's tooltip by @UtkarshUsername in pingdotgg/t3code#5594

## New Contributors
* @gabrielelpidio made their first contribution in pingdotgg/t3code#4874
* @arhxam made their first contribution in pingdotgg/t3code#5027
* @skjiisa made their first contribution in pingdotgg/t3code#4929
* @Lucenx9 made their first contribution in pingdotgg/t3code#4990
* @MaxAnderson95 made their first contribution in pingdotgg/t3code#4895
* @t3-code[bot] made their first contribution in pingdotgg/t3code#5202
* @Brechard made their first contribution in pingdotgg/t3code#5327
* @naMqe-h made their first contribution in pingdotgg/t3code#5326
* @Bil0000 made their first contribution in pingdotgg/t3code#5353
* @gfsaaser24 made their first contribution in pingdotgg/t3code#5561
* @Mateleo made their first contribution in pingdotgg/t3code#4511
* @jmeistrich made their first contribution in pingdotgg/t3code#5451
* @justynleung made their first contribution in pingdotgg/t3code#5440
* @StoneCotton made their first contribution in pingdotgg/t3code#5415
* @PollyGlot made their first contribution in pingdotgg/t3code#5582

**Full Changelog**: pingdotgg/t3code@v0.0.31...v0.0.32

Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:XXL 1,000+ changed lines (additions + deletions). vouch:unvouched PR author is not yet trusted in the VOUCHED list.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Settings: choose UI and code font families (presets + custom local fonts)

3 participants