@pixelbyte-software/pixcode 1.53.20 → 1.53.22

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-BSJmIhN_.js"></script>
38
+ <script type="module" crossorigin src="/assets/index-n58Toje1.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.20",
3
+ "version": "1.53.22",
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",
@@ -49,19 +49,28 @@ const checks = [
49
49
  },
50
50
  {
51
51
  path: 'src/components/standalone-shell/view/StandaloneShell.tsx',
52
- assert: (source) => source.includes('showHeader={showHeader}'),
53
- message: 'Standalone shell must pass header visibility through to the inner shell.',
52
+ assert: (source) => source.includes('showHeader={showHeader}') && source.includes('layoutSignal={layoutSignal}'),
53
+ message: 'Standalone shell must pass header visibility and layout refit signals through to the inner shell.',
54
54
  },
55
55
  {
56
56
  path: 'src/components/shell/view/Shell.tsx',
57
57
  assert: (source) =>
58
58
  source.includes('showHeader?: boolean') &&
59
59
  source.includes('showHeader &&') &&
60
+ source.includes('layoutSignal?: string | number | null') &&
60
61
  source.includes('pixcode-shell-terminal') &&
61
62
  source.includes('min-w-0') &&
62
63
  source.includes('max-w-full'),
63
64
  message: 'Shell must support true headerless rendering and a stable terminal fit container.',
64
65
  },
66
+ {
67
+ path: 'src/components/shell/hooks/useShellTerminal.ts',
68
+ assert: (source) =>
69
+ source.includes('proposeDimensions()') &&
70
+ source.includes('currentTerminal.resize(nextCols, nextRows)') &&
71
+ source.includes('layoutSignal'),
72
+ message: 'Shell terminal must force cols/rows to refit when the layout signal changes.',
73
+ },
65
74
  {
66
75
  path: 'src/components/shell/utils/terminalStyles.ts',
67
76
  assert: (source) =>
@@ -83,9 +92,14 @@ const checks = [
83
92
  path: 'src/components/vscode-workbench/view/VSCodeWorkbench.tsx',
84
93
  assert: (source) =>
85
94
  source.includes("autoConnect={canAutoConnect && tab.id === activeCliTab?.id}") &&
95
+ source.includes('layoutSignal={rightPaneWidth}') &&
96
+ source.includes('right-cli:${layoutSignal}') &&
97
+ source.includes('getRightPaneMaxWidth') &&
98
+ source.includes('RIGHT_HARD_MAX_WIDTH') &&
99
+ !source.includes('RIGHT_MAX_WIDTH = 680') &&
86
100
  source.includes("absolute inset-0 min-w-0 overflow-hidden") &&
87
101
  source.includes("h-full min-w-0 shrink-0 overflow-hidden bg-background"),
88
- message: 'Right CLI panel must keep hidden tabs disconnected and constrain terminal overflow.',
102
+ message: 'Right CLI panel must keep hidden tabs disconnected, refit on resize, and avoid a narrow fixed width cap.',
89
103
  },
90
104
  ];
91
105