@pixelbyte-software/pixcode 1.53.24 → 1.53.25

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.html CHANGED
@@ -35,7 +35,7 @@
35
35
 
36
36
  <!-- Prevent zoom on iOS -->
37
37
  <meta name="format-detection" content="telephone=no" />
38
- <script type="module" crossorigin src="/assets/index-8fx-X_or.js"></script>
38
+ <script type="module" crossorigin src="/assets/index-OpULiirC.js"></script>
39
39
  <link rel="modulepreload" crossorigin href="/assets/vendor-react-DB6V5Fl1.js">
40
40
  <link rel="modulepreload" crossorigin href="/assets/vendor-codemirror-CIYNS698.js">
41
41
  <link rel="modulepreload" crossorigin href="/assets/vendor-xterm-C7tpxJl7.js">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelbyte-software/pixcode",
3
- "version": "1.53.24",
3
+ "version": "1.53.25",
4
4
  "description": "Self-hosted AI coding agent control room for Claude Code, Cursor CLI, OpenAI Codex, Gemini CLI, Qwen Code, and OpenCode with chat, files, shell, Git, orchestration, API keys, Telegram, MCP, plugins, themes, and desktop/server deployment.",
5
5
  "type": "module",
6
6
  "main": "dist-server/server/index.js",
@@ -58,10 +58,12 @@ const checks = [
58
58
  source.includes('showHeader?: boolean') &&
59
59
  source.includes('showHeader &&') &&
60
60
  source.includes('layoutSignal?: string | number | null') &&
61
+ source.includes('isRightCliTerminal') &&
62
+ source.includes('pixcode-shell-terminal--right-cli') &&
61
63
  source.includes('pixcode-shell-terminal') &&
62
64
  source.includes('min-w-0') &&
63
65
  source.includes('max-w-full'),
64
- message: 'Shell must support true headerless rendering and a stable terminal fit container.',
66
+ message: 'Shell must support true headerless rendering, right CLI scoping, and a stable terminal fit container.',
65
67
  },
66
68
  {
67
69
  path: 'src/components/shell/hooks/useShellTerminal.ts',
@@ -81,8 +83,12 @@ const checks = [
81
83
  source.includes('display: flex') &&
82
84
  source.includes('max-width: 100%') &&
83
85
  source.includes('.pixcode-shell-terminal .xterm-viewport') &&
84
- !source.includes('white-space: pre-wrap !important'),
85
- message: 'Terminal styles must preserve xterm row semantics; responsive right pane fit is handled by font scaling.',
86
+ source.includes('.pixcode-shell-terminal--right-cli .xterm-rows > div') &&
87
+ source.includes('white-space: pre-wrap !important') &&
88
+ source.includes('overflow-wrap: anywhere !important') &&
89
+ source.includes('word-break: break-word !important') &&
90
+ !source.includes('.pixcode-shell-terminal .xterm-rows > div'),
91
+ message: 'Terminal styles must preserve global xterm row semantics while wrapping only the scoped right CLI panel.',
86
92
  },
87
93
  {
88
94
  path: 'src/components/vscode-workbench/view/VSCodeWorkbench.tsx',