@pixelbyte-software/pixcode 1.53.25 → 1.53.26

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-OpULiirC.js"></script>
38
+ <script type="module" crossorigin src="/assets/index-blc6pTTl.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.25",
3
+ "version": "1.53.26",
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",
@@ -68,14 +68,31 @@ const checks = [
68
68
  {
69
69
  path: 'src/components/shell/hooks/useShellTerminal.ts',
70
70
  assert: (source) =>
71
- source.includes('proposeDimensions()') &&
72
- source.includes('currentTerminal.resize(nextCols, nextRows)') &&
73
- source.includes('resolveRightCliFontSize') &&
74
- source.includes('currentTerminal.options.fontSize = nextFontSize') &&
71
+ source.includes('fitShellTerminal') &&
75
72
  source.includes('layoutSignalRef.current') &&
76
73
  !source.includes('}, [fitAddonRef, layoutSignal, terminalContainerRef, terminalRef, wsRef])'),
77
74
  message: 'Shell terminal must refit on layout changes without reconnecting the terminal lifecycle.',
78
75
  },
76
+ {
77
+ path: 'src/components/shell/hooks/useShellConnection.ts',
78
+ assert: (source) =>
79
+ source.includes('terminalContainerRef') &&
80
+ source.includes('layoutSignalRef') &&
81
+ source.includes('fitShellTerminal') &&
82
+ source.includes('cols: currentTerminal.cols') &&
83
+ source.includes('rows: currentTerminal.rows'),
84
+ message: 'Shell connection init must fit terminal dimensions from the real container before sending PTY rows and columns.',
85
+ },
86
+ {
87
+ path: 'src/components/shell/utils/terminalFit.ts',
88
+ assert: (source) =>
89
+ source.includes('getBoundingClientRect()') &&
90
+ source.includes('proposeDimensionsFromContainer') &&
91
+ source.includes('right-cli:') &&
92
+ source.includes('terminal.resize(nextCols, nextRows)') &&
93
+ source.includes('terminal.options.fontSize = nextFontSize'),
94
+ message: 'Terminal fit utility must use real container geometry for the right CLI panel.',
95
+ },
79
96
  {
80
97
  path: 'src/components/shell/utils/terminalStyles.ts',
81
98
  assert: (source) =>