open-agents-ai 0.185.7 → 0.185.8

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -62135,9 +62135,12 @@ ${CONTENT_BG_SEQ}`);
62135
62135
  } else {
62136
62136
  const absD = Math.abs(heightDelta);
62137
62137
  this.termWrite(`\x1B[${this.scrollRegionTop};${pos.scrollEnd}r`);
62138
- const oldScrollEnd = Math.max(rows - oldFooterHeight, this.scrollRegionTop + 1);
62138
+ let scrollDown = `\x1B[${this.scrollRegionTop};1H`;
62139
+ for (let i = 0; i < absD; i++)
62140
+ scrollDown += "\x1BM";
62141
+ this.termWrite(scrollDown);
62139
62142
  let repaint = "";
62140
- for (let r = oldScrollEnd + 1; r <= pos.scrollEnd; r++) {
62143
+ for (let r = this.scrollRegionTop; r < this.scrollRegionTop + absD; r++) {
62141
62144
  repaint += `\x1B[${r};1H${CONTENT_BG_SEQ}\x1B[2K`;
62142
62145
  }
62143
62146
  if (repaint)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.185.7",
3
+ "version": "0.185.8",
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",