@oh-my-pi/pi-tui 18.0.1 → 18.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [18.0.3] - 2026-08-23
6
+
7
+ ### Fixed
8
+
9
+ - Fixed inline images vanishing from the transcript and scrollback when the session exits: stop no longer deletes transmitted Kitty images from the terminal's graphics store.
10
+
11
+ ## [18.0.2] - 2026-08-23
12
+
13
+ ### Fixed
14
+
15
+ - Fixed visible history being erased when enlarging the terminal.
16
+
5
17
  ## [18.0.1] - 2026-08-23
6
18
 
7
19
  ### Added
@@ -18,7 +30,6 @@
18
30
 
19
31
  ### Fixed
20
32
 
21
- - Fixed the resize live-region erase wiping visible history rows when the terminal height grows: cursor-relative addressing tracks the reflowed viewport top on grow, while the bottom-preserving bound still guards height shrinks.
22
33
  - Fixed consecutive prompt submissions being skipped by persistent history, allowing the latest project metadata to replace the previous entry without duplicating editor navigation history.
23
34
  - Fixed the history drain stalling on idle screens: accepting a batch now pumps the next frame, so a large resumed transcript retires to terminal history instead of pinning the live viewport in its emergency aggregate.
24
35
  - Fixed fuzzy matching so a qualifying whole-word hit is not hidden by an earlier mid-word occurrence ([#8465](https://github.com/can1357/oh-my-pi/pull/8465) by [@Mustaqeem66](https://github.com/Mustaqeem66)).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-tui",
4
- "version": "18.0.1",
4
+ "version": "18.0.3",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Stencil Labs, Inc.",
@@ -37,8 +37,8 @@
37
37
  "fmt": "biome format --write ."
38
38
  },
39
39
  "dependencies": {
40
- "@oh-my-pi/pi-natives": "18.0.1",
41
- "@oh-my-pi/pi-utils": "18.0.1"
40
+ "@oh-my-pi/pi-natives": "18.0.3",
41
+ "@oh-my-pi/pi-utils": "18.0.3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "kitty-vt-wasm": "^0.2.0"
package/src/tui.ts CHANGED
@@ -1359,7 +1359,11 @@ export class TUI extends Container {
1359
1359
  this.#altPreviousLines = [];
1360
1360
  this.#pendingAltExit = "";
1361
1361
  }
1362
- this.#purgeInlineImages();
1362
+ // Deliberately leave transmitted images in the terminal's graphics store:
1363
+ // placeholder cells committed to native scrollback render only while their
1364
+ // image data lives, so a delete-by-id here blanks every transcript image
1365
+ // the instant the session exits. The terminal enforces its own store quota
1366
+ // (and live-session ghosts are already bounded by the inline-image budget).
1363
1367
  this.#clearSixelProbeState();
1364
1368
  this.#stopped = true;
1365
1369
  this.#watchdog.stop();