Skip to content

Commit c036364

Browse files
author
Brendan Gray
committed
v1.6.10 — fix title bar overlay height 40->34px, bump version
1 parent b2c9d5b commit c036364

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

electron-main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function createWindow() {
287287
titleBarOverlay: {
288288
color: '#1e1e1e',
289289
symbolColor: '#cccccc',
290-
height: 40,
290+
height: 34,
291291
},
292292
backgroundColor: '#1e1e1e',
293293
show: false,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "guide-ide",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "guIDE - AI-Powered Offline IDE with local LLM, RAG, MCP tools, browser automation, and integrated terminal",
55
"author": {
66
"name": "Brendan Gray",

src/components/Layout/ThemeProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export const ThemeProvider: React.FC<{ children: React.ReactNode }> = ({ childre
289289
// Sync native Electron title bar color with active theme
290290
try {
291291
const symbolColor = theme.type === 'dark' ? '#cccccc' : '#1a1a1a';
292-
(window as any).electronAPI?.setTitleBarOverlay?.({ color: c.titleBar, symbolColor, height: 40 });
292+
(window as any).electronAPI?.setTitleBarOverlay?.({ color: c.titleBar, symbolColor, height: 34 });
293293
} catch { /* ignore in browser/dev */ }
294294
}, [theme]);
295295

website/src/app/download/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// Single source of truth for the displayed release version.
44
// Updated automatically by: npm run release:deploy (from IDE root)
5-
const CURRENT_VERSION = '1.6.9';
5+
const CURRENT_VERSION = '1.6.10';
66

77
import Link from 'next/link';
88
import { useState } from 'react';

0 commit comments

Comments
 (0)