omnius 1.0.299 → 1.0.300

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
@@ -607789,14 +607789,16 @@ var init_status_bar = __esm({
607789
607789
  buf += `\x1B[${hdrRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607790
607790
  const scrollPct = this._contentScrollOffset > 0 ? `${Math.round(this._contentScrollOffset / this._contentMaxLines * 100)}%` : "live";
607791
607791
  if (this._headerExpanded) {
607792
- const subRow = hdrRow + 1;
607792
+ const sepRow1 = hdrRow + 1;
607793
+ buf += `\x1B[${sepRow1};1H${BOX_FG}├${"─".repeat(w - 2)}${BOX_FG}┤${RESET4}${PANEL_BG_SEQ}`;
607794
+ const subRow = hdrRow + 2;
607793
607795
  buf += `\x1B[${subRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607794
607796
  buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607795
607797
  buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
607796
607798
  const subAgents = this._agentViews.size > 1 ? Array.from(this._agentViews.values()).filter((v) => v.id !== "main").map(
607797
607799
  (v) => `${v.status === "running" ? "●" : v.status === "completed" ? "✓" : "○"} ${v.label}`
607798
607800
  ).join(" ") : "no sub-agents";
607799
- buf += subAgents.substring(0, w - 4);
607801
+ buf += ` ${subAgents.substring(0, w - 4)}`;
607800
607802
  buf += `\x1B[${subRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607801
607803
  const sepRow = subRow + 1;
607802
607804
  buf += `\x1B[${sepRow};1H${PANEL_BG_SEQ}\x1B[2K`;
@@ -608822,7 +608824,7 @@ var init_status_bar = __esm({
608822
608824
  const wasExpanded = this._headerExpanded;
608823
608825
  this._headerExpanded = !this._headerExpanded;
608824
608826
  this.refreshHeaderAndFooter();
608825
- this.scrollRegionTop += this._headerExpanded ? 2 : -2;
608827
+ this.scrollRegionTop += this._headerExpanded ? 3 : -3;
608826
608828
  if (this.active) {
608827
608829
  this.applyScrollRegion();
608828
608830
  this.renderFooterAndPositionInput();
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.299",
3
+ "version": "1.0.300",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.299",
9
+ "version": "1.0.300",
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.299",
3
+ "version": "1.0.300",
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",