omnius 1.0.686 → 1.0.687

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
@@ -729756,7 +729756,13 @@ var init_status_bar = __esm({
729756
729756
  buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
729757
729757
  buf += `scroll: ${scrollPct}`.substring(0, w - 4);
729758
729758
  buf += `\x1B[${scrollRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
729759
- buf += `\x1B[${scrollRow};1H${BOX_FG}╰${"─".repeat(w - 2)}${BOX_FG}╯${RESET4}${PANEL_BG_SEQ}`;
729759
+ const collapsedBottomChars = Array.from(
729760
+ `${BOX_BL3}${BOX_H3.repeat(w - 2)}${BOX_BR3}`
729761
+ );
729762
+ for (const col of this.getHeaderBorderSeparatorColumns(w)) {
729763
+ if (col > 1 && col < w) collapsedBottomChars[col - 1] = BOX_BJ;
729764
+ }
729765
+ buf += `\x1B[${scrollRow};1H${BOX_FG}${collapsedBottomChars.join("")}${RESET4}${PANEL_BG_SEQ}`;
729760
729766
  }
729761
729767
  buf += "\x1B8";
729762
729768
  this.termWrite(buf);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.686",
3
+ "version": "1.0.687",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.686",
9
+ "version": "1.0.687",
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.686",
3
+ "version": "1.0.687",
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/library.js",