Skip to content

Commit b9ba797

Browse files
ralyodioclaude
andcommitted
fix(ext): model name was wrapping in the sidebar header (v3.3.2)
The #provider line ("Anthropic (Claude) · claude-opus-4-8") was squeezed into the header by the new Chat/Media/Tor buttons and wrapped to 3 lines. Moved it to its own full-width line below the header (nowrap + ellipsis), added a flex spacer, and made the Chat/Media buttons icon-only (💬/📺, full names in tooltips) so the header fits the narrow side panel. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent a5ec90b commit b9ba797

27 files changed

Lines changed: 34 additions & 29 deletions

File tree

apps/desktop/extensions/ai-sidebar/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "TronBrowser",
4-
"version": "3.3.1",
4+
"version": "3.3.2",
55
"description": "TronBrowser — privacy-first, AI-native. Branded new tab, private search, CoinPay login, and a bring-your-own-keys AI sidebar.",
66
"icons": {
77
"16": "icons/icon-16.png",

apps/desktop/extensions/ai-sidebar/sidepanel.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ header {
1717
.brand { font-weight: 800; letter-spacing: 1px; }
1818
.brand .accent { color: var(--cyan); }
1919
.accent { color: var(--cyan); }
20-
.provider { color: var(--muted); font-size: 12px; flex: 1; }
20+
.hspace { flex: 1; }
21+
.provider { color: var(--muted); font-size: 11px; padding: 3px 12px;
22+
border-bottom: 1px solid var(--line); white-space: nowrap; overflow: hidden;
23+
text-overflow: ellipsis; }
24+
.provider:empty { display: none; }
2125
header button { background: transparent; border: 1px solid var(--line); color: var(--fg);
2226
border-radius: 6px; cursor: pointer; padding: 2px 8px; }
2327
.tor-btn { font-size: 12px; white-space: nowrap; }

apps/desktop/extensions/ai-sidebar/sidepanel.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
<header>
1111
<img src="icons/favicon.svg" alt="TronBrowser" class="brand-logo" />
1212
<span class="brand">Tron<span class="accent">Browser</span></span>
13-
<span id="provider" class="provider"></span>
14-
<button id="chat" class="tor-btn" title="Open Chat (IRC + qrypt.chat)">💬 Chat</button>
15-
<button id="media" class="tor-btn" title="Open Media (bittorrented.com)">📺 Media</button>
13+
<span class="hspace"></span>
14+
<button id="chat" class="tor-btn" title="Open Chat (IRC + qrypt.chat)">💬</button>
15+
<button id="media" class="tor-btn" title="Open Media (bittorrented.com)">📺</button>
1616
<button id="tor" class="tor-btn" title="Route this session through Tor" aria-pressed="false">🧅 Tor</button>
1717
<button id="settings" title="Settings"></button>
1818
</header>
1919

20+
<div id="provider" class="provider"></div>
2021
<div id="ext-version" class="ext-version"></div>
2122

2223
<div id="tor-progress" class="tor-progress hidden"><div id="tor-progress-bar" class="bar"></div></div>

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/desktop",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "Desktop shell for the TronBrowser Chromium fork",
66
"type": "module",

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/docs",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "Documentation site",
66
"type": "module",

apps/extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/extensions",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "TronBrowser extension store — pay $1, list your MV3 extension (tronbrowser.dev/store)",
66
"type": "module",

apps/mobile/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"slug": "tronbrowserdev",
55
"owner": "profullstack",
66
"scheme": "tronbrowser",
7-
"version": "3.3.1",
7+
"version": "3.3.2",
88
"orientation": "portrait",
99
"userInterfaceStyle": "dark",
1010
"platforms": [

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/mobile",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "TronBrowser mobile (Expo / React Native) — Phase 2",
66
"type": "module",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tronbrowser/web",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "TronBrowser marketing site + web dashboard",
66
"type": "module",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tronbrowser",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "TronBrowser.dev — open-source, privacy-first, AI-native browser",
66
"packageManager": "pnpm@9.12.0",

0 commit comments

Comments
 (0)