omnius 1.0.118 → 1.0.119

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
@@ -573330,10 +573330,12 @@ var init_status_bar = __esm({
573330
573330
  /**
573331
573331
  * A dynamic block repaint positions box rows via absolute cursor moves but
573332
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.
573333
+ * The next content write session must therefore repaint from scrollback
573334
+ * instead of writing at the stale cursor, or multi-line injections like
573335
+ * "Context added" can overwrite the box bottom border.
573335
573336
  */
573336
573337
  _contentCursorNeedsReplay = false;
573338
+ _contentCursorReplayActive = false;
573337
573339
  /** Auto-scroll to live when new content arrives (disabled when user scrolls back) */
573338
573340
  _autoScroll = true;
573339
573341
  /** Cached click region for the spacer button */
@@ -573476,6 +573478,7 @@ var init_status_bar = __esm({
573476
573478
  if (this.active) {
573477
573479
  this.repaintContent();
573478
573480
  this._contentCursorNeedsReplay = true;
573481
+ if (this.writeDepth > 0) this._contentCursorReplayActive = true;
573479
573482
  }
573480
573483
  }
573481
573484
  /** Force a complete footer redraw (public wrapper for renderFooterAndPositionInput).
@@ -575339,6 +575342,7 @@ var init_status_bar = __esm({
575339
575342
  if (!this.active) return;
575340
575343
  this.writeDepth++;
575341
575344
  if (this.writeDepth > 1) return;
575345
+ this._contentCursorReplayActive = this._contentCursorNeedsReplay;
575342
575346
  if (isOverlayActive()) {
575343
575347
  return;
575344
575348
  }
@@ -575384,8 +575388,7 @@ var init_status_bar = __esm({
575384
575388
  }
575385
575389
  if (bufferedContentChanged) self2.scheduleStreamingRepaint();
575386
575390
  }
575387
- if (self2._contentCursorNeedsReplay && bufferedContentChanged && self2._bufferContent && !isOverlayActive()) {
575388
- self2._contentCursorNeedsReplay = false;
575391
+ if (self2._contentCursorReplayActive && bufferedContentChanged && self2._bufferContent && !isOverlayActive()) {
575389
575392
  self2.clearStreamingRepaintTimer();
575390
575393
  self2.repaintContent();
575391
575394
  return true;
@@ -575433,6 +575436,8 @@ ${CONTENT_BG_SEQ}`);
575433
575436
  this._inProgressLine = "";
575434
575437
  }
575435
575438
  this._bufferContent = false;
575439
+ this._contentCursorNeedsReplay = false;
575440
+ this._contentCursorReplayActive = false;
575436
575441
  if (this._origWrite) {
575437
575442
  try {
575438
575443
  delete process.stdout.write.__omniusWriteLayer;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.118",
9
+ "version": "1.0.119",
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.118",
3
+ "version": "1.0.119",
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",