| Commit message (Expand) | Author | Age | Files | Lines |
| * | palette: replace the stock Ctrl+P command palette with real ida-tui actions | blasty | 3 days | 1 | -0/+79 |
| * | ux: omit the splash logo when the terminal is too small for it | blasty | 3 days | 1 | -1/+7 |
| * | hex: freeze the cursor's screen position on scroll (not clamp-to-edge) | blasty | 3 days | 1 | -14/+21 |
| * | ux: render the logo.ans ANSI-art splash in the loading overlay | blasty | 3 days | 1 | -2/+27 |
| * | hex: cursor follows the scroll (stays visible on wheel/scrollbar) | blasty | 3 days | 1 | -0/+20 |
| * | hex: click to place the byte cursor (hex + ascii panes) | blasty | 3 days | 1 | -0/+33 |
| * | xrefs: show fine-grained kind (call/jump/read/write/offset) in the dialog | blasty | 3 days | 3 | -8/+14 |
| * | listing: shift+home jumps to the start of the instruction text | blasty | 3 days | 1 | -0/+24 |
| * | listing: <home> jumps the cursor to start-of-line (pairs with <end>) | blasty | 3 days | 1 | -2/+3 |
| * | listing: <end> jumps the cursor to end-of-line, not goto-bottom | blasty | 3 days | 1 | -1/+2 |
| * | mcp: delete the ida-pro-mcp transport, supervisor, and mcp-only tests | blasty | 3 days | 7 | -806/+31 |
| * | mcp: collapse app + launcher to worker-only | blasty | 3 days | 2 | -312/+40 |
| * | refactor: extract shared error hierarchy + Session into idatui/errors.py | blasty | 3 days | 6 | -69/+99 |
| * | worker: inject custom tools on startup (self-sufficient, no spawn.sh needed) | blasty | 3 days | 1 | -0/+20 |
| * | deprecate: make the idalib worker the default backend; mark mcp path for removal | blasty | 4 days | 2 | -4/+21 |
| * | worker: wrap non-dict tool returns as {"result": ...} to match MCP shapes | blasty | 4 days | 1 | -1/+5 |
| * | worker: spawn under the IDA python (has ida_pro_mcp), not the TUI's | blasty | 4 days | 1 | -4/+33 |
| * | worker: surface the real startup failure (not just "code 1") | blasty | 4 days | 2 | -7/+41 |
| * | app: --backend {mcp,worker} — run the TUI on our idalib worker (migration s... | blasty | 4 days | 2 | -66/+115 |
| * | worker: idalib worker + WorkerClient (drop-in for IDAClient) — migration st... | blasty | 4 days | 2 | -0/+325 |
| * | robust: survive a lost server connection instead of crashing; auto-reconnect | blasty | 4 days | 1 | -2/+95 |
| * | nav: baseline horizontal scroll at 0 when jumping to a target column | blasty | 4 days | 1 | -4/+5 |
| * | ux: fix truncated loading-splash message | blasty | 4 days | 1 | -2/+1 |
| * | ux: block with a "finding xrefs…" overlay while gathering xrefs | blasty | 4 days | 1 | -6/+71 |
| * | nav: snap an xref-into-pseudocode jump to the line that holds the symbol | blasty | 4 days | 1 | -5/+40 |
| * | nav: xref jump into pseudocode lands on the referenced symbol, not column 0 | blasty | 4 days | 1 | -1/+5 |
| * | nav: land the decompiler cursor on the function name, not column 0 | blasty | 4 days | 1 | -5/+11 |
| * | ux: label the startup wait as auto-analysis, not "starting a server" | blasty | 4 days | 1 | -3/+8 |
| * | ux: start the analysis server from inside the TUI (no more dead window) | blasty | 4 days | 2 | -50/+46 |
| * | launch: sweep a crashed worker's stale DB locks before starting the supervisor | blasty | 4 days | 1 | -0/+9 |
| * | ux: show TUI chrome + a "loading…" overlay during binary open/analysis | blasty | 4 days | 2 | -16/+104 |
| * | fix: keep the pseudocode cursor/scroll when a rename re-decompiles | blasty | 4 days | 1 | -1/+12 |
| * | nav: land the cursor on the ref's column, not column 0 | blasty | 4 days | 1 | -6/+26 |
| * | fix: refresh-after-edit keeps the edited line on screen (rename now visible) | blasty | 4 days | 1 | -2/+13 |
| * | fix: Tab decomp->listing reuses the nav entry so edits stay put | blasty | 4 days | 1 | -5/+25 |
| * | fix: Tab back from a decomp jump returns to the listing cleanly | blasty | 4 days | 1 | -2/+11 |
| * | nav: jumping from the decompiler stays in the decompiler | blasty | 4 days | 1 | -8/+61 |
| * | listing: on-screen jumps just move the cursor, don't re-scroll | blasty | 4 days | 1 | -4/+10 |
| * | listing: keep a few lines of context above a jump target | blasty | 4 days | 1 | -0/+6 |
| * | fix: follow/double-click a label lands on the label, not the function entry | blasty | 4 days | 1 | -2/+14 |
| * | fix: don't let a late navigation steal focus from an open prompt | blasty | 4 days | 1 | -3/+23 |
| * | listing: restore full-segment search load (find every match) | blasty | 4 days | 1 | -5/+29 |
| * | views: highlight all occurrences of the token under the cursor | blasty | 4 days | 1 | -1/+51 |
| * | listing: code labels on their own line; search loaded portion (no wedge) | blasty | 4 days | 2 | -19/+16 |
| * | listing: two-level indent, address on headers, drop 'near', opcode cap+cycle | blasty | 4 days | 1 | -23/+49 |
| * | listing: IDA-style function boundary banners in the unified view | blasty | 4 days | 2 | -2/+14 |
| * | unify: the continuous listing is the one code view; deprecate DisasmView | blasty | 4 days | 3 | -146/+127 |
| * | listing: F5/Tab decompiles the function under the cursor (IDA-style) — step 2 | blasty | 4 days | 1 | -9/+58 |
| * | listing: render opcode bytes (shared engine with disasm) — M4/UX step 1 | blasty | 4 days | 2 | -8/+85 |
| * | app: 'L' opens the continuous segment listing (functions+data interleaved) | blasty | 4 days | 1 | -0/+38 |