aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_kittygfx.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* reformat: ruff format + import sort, mechanically (see ruff.toml)blasty8 days1-53/+100
| | | | No behavior. Listed in .git-blame-ignore-revs (next commit).
* Merge PR #1 from mrexodia: Windows support and auto-refresh on eventsblasty8 days1-0/+59
|\ | | | | | | | | | | | | | | | | | | | | https://github.com/blasty/ida-tui/pull/1 — from the ida-nexus (né ida-codemode) maintainer: kitty-graphics fallback for platforms without termios, Ctrl+R view refresh, typed remote operations through ida_nexus RemoteModule, live auto-refresh from other clients' IDB events (upstream item 7), discard-without-save (item 6), and the ida-nexus 0.7.0 rename. tests/test_kittygfx.py is the union of both sides' files: our escape- construction checks plus the PR's cross-platform fallback checks.
| * Switch to ida-nexusDuncan Ogilvie8 days1-1/+1
| |
| * Add kitty graphics fallback for Windows supportDuncan Ogilvie12 days1-0/+90
|
* splash: give the logo a placement id so re-anchoring replaces, not stacksblasty8 days1-0/+152
A kitty placement is identified by (image id, placement id); an a=p with no p= key is anonymous and every one stacks another copy. The splash re-anchors on every progress note (~5/s), so a 60s load ended with ~300 placements of an RGBA logo alpha-compositing over each other -- soft edges creeping to solid, and the terminal re-rendering all of them per frame. Same pair every time (LOGO_PLACEMENT) = the terminal REPLACES the placement, so re-anchoring is free and atomic. That is also why on_resize no longer clear()s first (that showed a hole for a frame), and why a shrunk-to-nothing region now drops the placement instead of leaving a stale one anchored. tests/test_kittygfx.py pins the escapes (pure, stdlib); experiments/splash_place_count.py counts what a real splash sends.