@f5xc-salesdemos/xcsh 14.6.2 → 14.6.3
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": "14.6.
|
|
4
|
+
"version": "14.6.3",
|
|
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",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
48
48
|
"@mozilla/readability": "^0.6",
|
|
49
|
-
"@f5xc-salesdemos/xcsh-stats": "14.6.
|
|
50
|
-
"@f5xc-salesdemos/pi-agent-core": "14.6.
|
|
51
|
-
"@f5xc-salesdemos/pi-ai": "14.6.
|
|
52
|
-
"@f5xc-salesdemos/pi-natives": "14.6.
|
|
53
|
-
"@f5xc-salesdemos/pi-tui": "14.6.
|
|
54
|
-
"@f5xc-salesdemos/pi-utils": "14.6.
|
|
49
|
+
"@f5xc-salesdemos/xcsh-stats": "14.6.3",
|
|
50
|
+
"@f5xc-salesdemos/pi-agent-core": "14.6.3",
|
|
51
|
+
"@f5xc-salesdemos/pi-ai": "14.6.3",
|
|
52
|
+
"@f5xc-salesdemos/pi-natives": "14.6.3",
|
|
53
|
+
"@f5xc-salesdemos/pi-tui": "14.6.3",
|
|
54
|
+
"@f5xc-salesdemos/pi-utils": "14.6.3",
|
|
55
55
|
"@sinclair/typebox": "^0.34",
|
|
56
56
|
"@xterm/headless": "^6.0",
|
|
57
57
|
"ajv": "^8.18",
|
|
@@ -350,9 +350,7 @@ export class InteractiveMode implements InteractiveModeContext {
|
|
|
350
350
|
if (this.#changelogMarkdown) {
|
|
351
351
|
this.ui.addChild(new DynamicBorder());
|
|
352
352
|
if (settings.get("collapseChangelog")) {
|
|
353
|
-
const
|
|
354
|
-
const latestVersion = versionMatch ? versionMatch[1] : this.#version;
|
|
355
|
-
const condensedText = `Updated to v${latestVersion}. Use ${theme.bold("/changelog")} to view full changelog.`;
|
|
353
|
+
const condensedText = `Updated to v${this.#version}. Use ${theme.bold("/changelog")} to view full changelog.`;
|
|
356
354
|
this.ui.addChild(new Text(condensedText, 1, 0));
|
|
357
355
|
} else {
|
|
358
356
|
this.ui.addChild(new Text(theme.bold(theme.fg("contentAccent", "What's New")), 1, 0));
|