@f5xc-salesdemos/xcsh 18.87.0 → 18.87.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5xc-salesdemos/xcsh",
4
- "version": "18.87.0",
4
+ "version": "18.87.2",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5xc-salesdemos/xcsh",
7
7
  "author": "Can Boluk",
@@ -50,12 +50,12 @@
50
50
  "dependencies": {
51
51
  "@agentclientprotocol/sdk": "0.16.1",
52
52
  "@mozilla/readability": "^0.6",
53
- "@f5xc-salesdemos/xcsh-stats": "18.87.0",
54
- "@f5xc-salesdemos/pi-agent-core": "18.87.0",
55
- "@f5xc-salesdemos/pi-ai": "18.87.0",
56
- "@f5xc-salesdemos/pi-natives": "18.87.0",
57
- "@f5xc-salesdemos/pi-tui": "18.87.0",
58
- "@f5xc-salesdemos/pi-utils": "18.87.0",
53
+ "@f5xc-salesdemos/xcsh-stats": "18.87.2",
54
+ "@f5xc-salesdemos/pi-agent-core": "18.87.2",
55
+ "@f5xc-salesdemos/pi-ai": "18.87.2",
56
+ "@f5xc-salesdemos/pi-natives": "18.87.2",
57
+ "@f5xc-salesdemos/pi-tui": "18.87.2",
58
+ "@f5xc-salesdemos/pi-utils": "18.87.2",
59
59
  "@sinclair/typebox": "^0.34",
60
60
  "@xterm/headless": "^6.0",
61
61
  "ajv": "^8.18",
@@ -404,16 +404,16 @@ export const SETTINGS_SCHEMA = {
404
404
 
405
405
  "tui.maxInlineImageColumns": {
406
406
  type: "number",
407
- default: 100,
407
+ default: 0,
408
408
  description:
409
- "Maximum width in terminal columns for inline images (default 100). Set to 0 for unlimited (bounded only by terminal width).",
409
+ "Maximum width in terminal columns for inline images. Set to 0 for unlimited (bounded only by terminal width).",
410
410
  },
411
411
 
412
412
  "tui.maxInlineImageRows": {
413
413
  type: "number",
414
- default: 20,
414
+ default: 0,
415
415
  description:
416
- "Maximum height in terminal rows for inline images (default 20). Set to 0 to use only the viewport-based limit (60% of terminal height).",
416
+ "Maximum height in terminal rows for inline images. Set to 0 to use only the viewport-based limit (60% of terminal height).",
417
417
  },
418
418
  // Display rendering
419
419
  "display.tabWidth": {
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "18.87.0",
21
- "commit": "501462242a4bc87a7ec923eac5f796e2d7791069",
22
- "shortCommit": "5014622",
20
+ "version": "18.87.2",
21
+ "commit": "fc4963fccc1dd6fd7f8261ef781528e190191123",
22
+ "shortCommit": "fc4963f",
23
23
  "branch": "main",
24
- "tag": "v18.87.0",
25
- "commitDate": "2026-05-29T05:57:38Z",
26
- "buildDate": "2026-05-29T06:18:32.519Z",
24
+ "tag": "v18.87.2",
25
+ "commitDate": "2026-05-29T16:05:07Z",
26
+ "buildDate": "2026-05-29T17:30:53.828Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5xc-salesdemos/xcsh",
30
30
  "repoSlug": "f5xc-salesdemos/xcsh",
31
- "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/501462242a4bc87a7ec923eac5f796e2d7791069",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.87.0"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/fc4963fccc1dd6fd7f8261ef781528e190191123",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.87.2"
33
33
  };
@@ -25,7 +25,7 @@ export function resolveImageOptions(): { maxWidthCells: number; maxHeightCells?:
25
25
  const maxWidthCells = settings.get("tui.maxInlineImageColumns");
26
26
  const rowSetting = Math.max(0, settings.get("tui.maxInlineImageRows"));
27
27
  const viewportRows = process.stdout.rows;
28
- const viewportFraction = viewportRows ? Math.floor(viewportRows * 0.6) : 0;
28
+ const viewportFraction = viewportRows ? Math.floor(viewportRows * 0.8) : 0;
29
29
  let maxHeightCells: number | undefined;
30
30
  if (rowSetting === 0) {
31
31
  // No explicit cap — use viewport fraction as safety bound