@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.
|
|
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.
|
|
54
|
-
"@f5xc-salesdemos/pi-agent-core": "18.87.
|
|
55
|
-
"@f5xc-salesdemos/pi-ai": "18.87.
|
|
56
|
-
"@f5xc-salesdemos/pi-natives": "18.87.
|
|
57
|
-
"@f5xc-salesdemos/pi-tui": "18.87.
|
|
58
|
-
"@f5xc-salesdemos/pi-utils": "18.87.
|
|
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:
|
|
407
|
+
default: 0,
|
|
408
408
|
description:
|
|
409
|
-
"Maximum width in terminal columns for inline images
|
|
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:
|
|
414
|
+
default: 0,
|
|
415
415
|
description:
|
|
416
|
-
"Maximum height in terminal rows for inline images
|
|
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.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "18.87.2",
|
|
21
|
+
"commit": "fc4963fccc1dd6fd7f8261ef781528e190191123",
|
|
22
|
+
"shortCommit": "fc4963f",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.87.
|
|
25
|
-
"commitDate": "2026-05-
|
|
26
|
-
"buildDate": "2026-05-
|
|
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/
|
|
32
|
-
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.87.
|
|
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.
|
|
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
|