Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ OpenGUI is for people who like coding agents but want stronger workflow than ter
- **Prompt queue** that auto-dispatches when assistant becomes idle
- **Model, backend, and agent selection** directly from chat workflow
- **Slash commands** from prompt box
- **Syntax highlighting + math rendering** with Shiki and KaTeX
- **Syntax highlighting** with Shiki
- **Dark/light theme** with system-aware toggle
- **Desktop, web, and Docker deployment options**
- **Cross-platform builds** for Linux, macOS, and Windows
Expand Down
9 changes: 0 additions & 9 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions opencode-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ export function setupOpenCodeBridge(ipcMain, _getWindows) {
};
}
}
console.log(
console.info(
`[opencode-bridge] Resolved binary: ${binary ?? "(not found)"} (platform: ${process.platform})`,
);
if (!binary) {
Expand All @@ -1528,7 +1528,7 @@ export function setupOpenCodeBridge(ipcMain, _getWindows) {
// Spawn detached so the server survives app close.
// Use piped stdio so we can capture logs on startup failure.
const serverArgs = ["serve", "--port", String(LOCAL_SERVER_PORT)];
console.log(
console.info(
`[opencode-bridge] Spawning: ${binary} ${serverArgs.join(" ")} (platform: ${process.platform})`,
);

Expand Down Expand Up @@ -1570,7 +1570,7 @@ export function setupOpenCodeBridge(ipcMain, _getWindows) {
});

// Wait for the server to become healthy
console.log(
console.info(
`[opencode-bridge] Waiting for server to become healthy (timeout: ${STARTUP_TIMEOUT / 1000}s)...`,
);
try {
Expand Down Expand Up @@ -1599,7 +1599,7 @@ export function setupOpenCodeBridge(ipcMain, _getWindows) {
child.stderr.removeAllListeners("data");
child.stderr.destroy();
}
console.log("[opencode-bridge] Server became healthy after launcher exited.");
console.info("[opencode-bridge] Server became healthy after launcher exited.");
return { success: true, data: { alreadyRunning: false } };
}

Expand Down Expand Up @@ -1641,7 +1641,7 @@ export function setupOpenCodeBridge(ipcMain, _getWindows) {
child.stderr.destroy();
}

console.log("[opencode-bridge] Server is healthy.");
console.info("[opencode-bridge] Server is healthy.");
return { success: true, data: { alreadyRunning: false } };
} catch (err) {
return { success: false, error: err.message ?? String(err) };
Expand Down
12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opengui",
"version": "0.5.8",
"version": "0.5.9",
"private": false,
"description": "OpenGUI - Desktop and web command center for coding agents",
"homepage": "https://github.com/akemmanuel/OpenGUI",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@hookform/resolvers": "^5.2.2",
"@mariozechner/jiti": "^2.6.5",
"@openai/codex-sdk": "^0.130.0",
"@opencode-ai/sdk": "^1.14.46",
"@opencode-ai/sdk": "^1.14.48",
"@tanstack/react-virtual": "^3.13.24",
"@wooorm/starry-night": "^3.9.0",
"class-variance-authority": "^0.7.1",
Expand All @@ -39,9 +39,8 @@
"electron-updater": "^6.8.3",
"embla-carousel-react": "^8.6.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"i18next": "^26.0.10",
"i18next": "^26.1.0",
"input-otp": "^1.4.2",
"katex": "^0.16.45",
"lucide-react": "^1.14.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
Expand All @@ -53,9 +52,7 @@
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.11.0",
"recharts": "3.8.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.6.0",
Expand All @@ -71,11 +68,12 @@
"@vitejs/plugin-react": "^6.0.1",
"bun-plugin-tailwind": "^0.1.2",
"electron": "^42.0.1",
"esbuild": "^0.28.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"vite": "^8.0.11",
"vite": "^8.0.12",
"vite-plus": "^0.1.20"
},
"packageManager": "pnpm@10.33.4",
Expand Down
Loading
Loading