Skip to content

Commit 3dfb34d

Browse files
committed
v0.1.29: TronBrowser branding in the app (toolbar icon + side panel)
- regenerate extension toolbar icons (16/32/48/128) from the new favicon/logo so the pinned toolbar button shows TronBrowser branding; add 48/128 to action icon - side panel header now shows the logo + 'TronBrowser' wordmark - (window-frame/titlebar branding + a left-docked sidebar need the native fork; an extension can only brand the toolbar icon, side panel, and new tab)
1 parent 8745f73 commit 3dfb34d

30 files changed

Lines changed: 32 additions & 27 deletions

File tree

1.15 KB
Loading
40 Bytes
Loading
144 Bytes
Loading
233 Bytes
Loading

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "TronBrowser",
4-
"version": "0.1.28",
4+
"version": "0.1.29",
55
"description": "TronBrowser — privacy-first, AI-native. Branded new tab, DuckDuckGo search, CoinPay login, and a bring-your-own-keys AI sidebar.",
66
"icons": {
77
"16": "icons/icon-16.png",
@@ -48,10 +48,12 @@
4848
}
4949
],
5050
"action": {
51-
"default_title": "TronBrowser AI",
51+
"default_title": "TronBrowser",
5252
"default_icon": {
5353
"16": "icons/icon-16.png",
54-
"32": "icons/icon-32.png"
54+
"32": "icons/icon-32.png",
55+
"48": "icons/icon-48.png",
56+
"128": "icons/icon-128.png"
5557
}
5658
},
5759
"side_panel": {

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ header {
1313
display: flex; align-items: center; gap: 8px;
1414
padding: 10px 12px; border-bottom: 1px solid var(--line);
1515
}
16+
.brand-logo { width: 20px; height: 20px; display: block; filter: drop-shadow(0 0 6px rgba(52,231,255,.4)); }
1617
.brand { font-weight: 800; letter-spacing: 1px; }
18+
.brand .accent { color: var(--cyan); }
1719
.accent { color: var(--cyan); }
1820
.provider { color: var(--muted); font-size: 12px; flex: 1; }
1921
header button { background: transparent; border: 1px solid var(--line); color: var(--fg);

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
</head>
99
<body>
1010
<header>
11-
<span class="brand">Tron<span class="accent">AI</span></span>
11+
<img src="icons/logo.svg" alt="TronBrowser" class="brand-logo" />
12+
<span class="brand">Tron<span class="accent">Browser</span></span>
1213
<span id="provider" class="provider"></span>
1314
<button id="settings" title="Settings"></button>
1415
</header>

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": "0.1.28",
3+
"version": "0.1.29",
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": "0.1.28",
3+
"version": "0.1.29",
44
"private": true,
55
"description": "Documentation site",
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": "0.1.28",
7+
"version": "0.1.29",
88
"orientation": "portrait",
99
"userInterfaceStyle": "dark",
1010
"platforms": [

0 commit comments

Comments
 (0)