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 desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codbash-desktop",
"productName": "codbash",
"version": "7.14.2",
"version": "7.14.3",
"private": true,
"description": "Desktop shell (Electron) for codbash — wraps the codbash server in a native window.",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codbash-app",
"version": "7.14.2",
"version": "7.14.3",
"description": "Dashboard + CLI for AI coding agents — Claude Code, Codex, Cursor, OpenCode, Kiro. View, search, resume, convert, sync sessions.",
"bin": {
"codbash": "./bin/cli.js",
Expand Down
8 changes: 8 additions & 0 deletions src/changelog.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
'use strict';

const CHANGELOG = [
{
version: '7.14.3',
date: '2026-07-20',
title: 'Running-projects tree moved under Terminal',
changes: [
'The running-terminals tree now lives right under the Terminal sidebar item instead of at the bottom of the sidebar',
],
},
{
version: '7.14.2',
date: '2026-07-20',
Expand Down
5 changes: 2 additions & 3 deletions src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="3" width="20" height="18" rx="2"/><polyline points="6 8 9 11 6 14"/><line x1="12" y1="15" x2="17" y2="15"/></svg>
Terminal
</div>
<!-- Live tree of projects that currently have running Workspace terminals. -->
<div id="wsRunningTree" class="ws-running-tree" style="display:none"></div>

<!-- Sessions section -->
<div class="sidebar-group collapsed" data-section="workspace">
Expand Down Expand Up @@ -224,9 +226,6 @@
</div>
</div>

<!-- Live tree of projects that currently have running Workspace terminals. -->
<div id="wsRunningTree" class="ws-running-tree" style="display:none"></div>

<span id="sidebarStatus" role="status" aria-live="polite" class="sr-only"></span>
<div class="sidebar-author">
Made by <a href="https://t.me/neuraldeep" target="_blank" rel="noopener noreferrer" aria-label="Valerii Kovalskii on Telegram (opens in new tab)">Valerii Kovalskii</a>
Expand Down
Loading