omnius 1.0.309 → 1.0.310

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
@@ -608165,7 +608165,7 @@ var init_status_bar = __esm({
608165
608165
  if (view.id === "main" && this._activeViewId === "main") continue;
608166
608166
  const icon = view.status === "running" ? "●" : view.status === "completed" ? "✓" : view.status === "failed" ? "✗" : "○";
608167
608167
  const base3 = ` ${trunc3(view.label)} ${icon} `;
608168
- zones.push({ w: base3.length + 1, id: view.id, render: () => "" });
608168
+ zones.push({ w: base3.length + 2 + 1, id: view.id, render: () => "" });
608169
608169
  }
608170
608170
  } else {
608171
608171
  zones.push({ w: NO_SUB_AGENTS_HEADER_LABEL.length, render: () => "" });
@@ -609232,20 +609232,14 @@ var init_status_bar = __esm({
609232
609232
  return;
609233
609233
  }
609234
609234
  if (cmd === "header-toggle") {
609235
- const wasExpanded = this._headerExpanded;
609236
609235
  this._headerExpanded = !this._headerExpanded;
609237
609236
  this.refreshHeaderAndFooter();
609238
609237
  this.scrollRegionTop += this._headerExpanded ? 2 : -2;
609239
609238
  if (this.active) {
609240
609239
  this.applyScrollRegion();
609240
+ this.repaintContent();
609241
609241
  this.renderFooterAndPositionInput();
609242
609242
  }
609243
- if (!this._headerExpanded && wasExpanded) {
609244
- const base3 = this.scrollRegionTop;
609245
- let buf = `\x1B[${base3};1H\x1B[2K\x1B[${base3 + 1};1H\x1B[2K`;
609246
- buf += `\x1B[${base3};1H\x1BM\x1BM`;
609247
- this.termWrite(buf);
609248
- }
609249
609243
  return;
609250
609244
  }
609251
609245
  setPressedButton(cmd);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.309",
3
+ "version": "1.0.310",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.309",
9
+ "version": "1.0.310",
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.309",
3
+ "version": "1.0.310",
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",