• Joined on 2026-02-16
hugo pushed to main at hugo/bDS2 2026-07-17 06:38:32 +00:00
505527ae4f feat: TUI settings panel on key 6 with per-section preference editors backed by the same GUI settings backends (issue #29)
hugo opened issue hugo/bDS2#34 2026-07-16 20:24:26 +00:00
idea: implement the tags panels
hugo pushed to main at hugo/bDS2 2026-07-16 20:22:18 +00:00
b6b1d16e54 feat: posts open in the rendered markdown preview by default, ctrl+e toggles to the editor
hugo commented on issue hugo/bDS2#30 2026-07-16 20:10:42 +00:00
idea: panel for git needs to be implemented in the TUI

Follow-up in 46fd6c1: the git sidebar now shows the commit history in its lower half, like the GUI — the sidebar splits 50/50 into the changed files (top, navigable) and a History panel (bottom)…

hugo pushed to main at hugo/bDS2 2026-07-16 20:10:29 +00:00
46fd6c1b85 feat: git sidebar shows the commit history in its lower half like the GUI (issue #30)
hugo commented on issue hugo/bDS2#30 2026-07-16 20:00:16 +00:00
idea: panel for git needs to be implemented in the TUI

Implemented in 5433cb5.

Key 7 in the TUI opens the git panel for content sync, driven by the same BDS.Git backend as the GUI git view:

  • Sidebar: the changed files from git status as…
hugo closed issue hugo/bDS2#30 2026-07-16 20:00:16 +00:00
idea: panel for git needs to be implemented in the TUI
hugo pushed to main at hugo/bDS2 2026-07-16 20:00:01 +00:00
5433cb59ac feat: TUI git panel on key 7 with change list, scrollable diff, commit, pull and push (issue #30)
hugo commented on issue hugo/bDS2#31 2026-07-16 19:42:37 +00:00
idea: searching in the TUI with /

Implemented in e027364.

/ in sidebar focus opens a vi-style search prompt in the status line that live-filters the current view on every keystroke — posts, pages and media, through the exact…

hugo closed issue hugo/bDS2#31 2026-07-16 19:42:37 +00:00
idea: searching in the TUI with /
hugo pushed to main at hugo/bDS2 2026-07-16 19:42:20 +00:00
e027364c0e feat: vi-style / search in the TUI sidebar with tag:, category: and ISO-date filters (issue #31)
hugo pushed to main at hugo/bDS2 2026-07-16 16:39:09 +00:00
3675a26407 fix: local tui mode routes console logging to a file and disables download progress bars so stray output cannot scroll the TUI
hugo pushed to main at hugo/bDS2 2026-07-16 16:27:11 +00:00
9a1f301527 feat: bash-style tab completion in the TUI project path prompt (issue #28)
hugo commented on issue hugo/bDS2#33 2026-07-16 16:13:34 +00:00
idea: fallback to TUI when GUI can't be initialized

Follow-up fix in 59333ac — the first implementation checked the display too late: the :desktop dependency application boots wx inside its own Application.start, before any BDS code runs, so the…

hugo pushed to main at hugo/bDS2 2026-07-16 16:13:18 +00:00
59333ac920 fix: set NO_WX before dependency boot and detect headless sessions per platform so the TUI fallback actually works (issue #33)
hugo commented on issue hugo/bDS2#33 2026-07-16 15:46:49 +00:00
idea: fallback to TUI when GUI can't be initialized

Implemented in 381deb4.

Desktop mode now falls back to the TUI when no graphical display is available:

  • New BDS.Server.effective_mode/3: when BDS_MODE resolves to desktop on a non-Darwin…
hugo closed issue hugo/bDS2#33 2026-07-16 15:46:49 +00:00
idea: fallback to TUI when GUI can't be initialized
hugo pushed to main at hugo/bDS2 2026-07-16 15:46:38 +00:00
381deb417d feat: desktop mode falls back to the TUI when no graphical display is available (issue #33)
hugo closed issue hugo/bDS2#28 2026-07-16 15:26:43 +00:00
idea: tui needs a way to open an existing project and switch projects
hugo commented on issue hugo/bDS2#28 2026-07-16 15:26:35 +00:00
idea: tui needs a way to open an existing project and switch projects

Implemented in 5801e49.

The TUI now has a projects overlay on p (sidebar focus):

  • Lists all projects from the caching database with the active one marked; enter activates the selected project…