omnius 1.0.117 → 1.0.118

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/dist/index.js CHANGED
@@ -573327,6 +573327,13 @@ var init_status_bar = __esm({
573327
573327
  _inProgressLine = "";
573328
573328
  /** Throttled repaint timer for the live streaming tail (partial line). */
573329
573329
  _streamingRepaintTimer = null;
573330
+ /**
573331
+ * A dynamic block repaint positions box rows via absolute cursor moves but
573332
+ * does not advance the terminal's live cursor below the expanded block.
573333
+ * The next content write must therefore repaint from scrollback instead of
573334
+ * writing at the stale cursor, or it can overwrite the box bottom border.
573335
+ */
573336
+ _contentCursorNeedsReplay = false;
573330
573337
  /** Auto-scroll to live when new content arrives (disabled when user scrolls back) */
573331
573338
  _autoScroll = true;
573332
573339
  /** Cached click region for the spacer button */
@@ -573466,7 +573473,10 @@ var init_status_bar = __esm({
573466
573473
  }
573467
573474
  if (this._autoScroll && !this._mouseSelecting)
573468
573475
  this._contentScrollOffset = 0;
573469
- if (this.active) this.repaintContent();
573476
+ if (this.active) {
573477
+ this.repaintContent();
573478
+ this._contentCursorNeedsReplay = true;
573479
+ }
573470
573480
  }
573471
573481
  /** Force a complete footer redraw (public wrapper for renderFooterAndPositionInput).
573472
573482
  *
@@ -575374,6 +575384,12 @@ var init_status_bar = __esm({
575374
575384
  }
575375
575385
  if (bufferedContentChanged) self2.scheduleStreamingRepaint();
575376
575386
  }
575387
+ if (self2._contentCursorNeedsReplay && bufferedContentChanged && self2._bufferContent && !isOverlayActive()) {
575388
+ self2._contentCursorNeedsReplay = false;
575389
+ self2.clearStreamingRepaintTimer();
575390
+ self2.repaintContent();
575391
+ return true;
575392
+ }
575377
575393
  if (typeof chunk === "string") {
575378
575394
  chunk = chunk.replace(/\x1B\[0m/g, `\x1B[0m${CONTENT_BG_SEQ}`).replace(/\n/g, `\x1B[K
575379
575395
  ${CONTENT_BG_SEQ}`);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.117",
3
+ "version": "1.0.118",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.117",
9
+ "version": "1.0.118",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.117",
3
+ "version": "1.0.118",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",