@pixelbyte-software/pixcode 1.53.27 → 1.53.28

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-CvFp-M8J.js"></script>
38
+ <script type="module" crossorigin src="/assets/index-BBDYzJ7B.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.27",
3
+ "version": "1.53.28",
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",
@@ -95,10 +95,11 @@ const checks = [
95
95
  path: 'src/components/shell/utils/terminalFit.ts',
96
96
  assert: (source) =>
97
97
  source.includes('getBoundingClientRect()') &&
98
+ source.includes('measureCellFromDom') &&
98
99
  source.includes('proposeDimensionsFromContainer') &&
99
100
  source.includes('right-cli:') &&
100
101
  source.includes('terminal.resize(nextCols, nextRows)') &&
101
- source.includes('terminal.options.fontSize = nextFontSize'),
102
+ !source.includes('terminal.options.fontSize = nextFontSize'),
102
103
  message: 'Terminal fit utility must use real container geometry for the right CLI panel.',
103
104
  },
104
105
  {
@@ -108,12 +109,12 @@ const checks = [
108
109
  source.includes('display: flex') &&
109
110
  source.includes('max-width: 100%') &&
110
111
  source.includes('.pixcode-shell-terminal .xterm-viewport') &&
111
- source.includes('.pixcode-shell-terminal--right-cli .xterm-rows > div') &&
112
- source.includes('white-space: pre-wrap !important') &&
113
- source.includes('overflow-wrap: anywhere !important') &&
114
- source.includes('word-break: break-word !important') &&
112
+ source.includes('.pixcode-shell-terminal--right-cli .xterm-rows') &&
113
+ !source.includes('white-space: pre-wrap !important') &&
114
+ !source.includes('overflow-wrap: anywhere !important') &&
115
+ !source.includes('word-break: break-word !important') &&
115
116
  !source.includes('.pixcode-shell-terminal .xterm-rows > div'),
116
- message: 'Terminal styles must preserve global xterm row semantics while wrapping only the scoped right CLI panel.',
117
+ message: 'Terminal styles must preserve xterm row semantics and avoid CSS wrapping terminal rows.',
117
118
  },
118
119
  {
119
120
  path: 'src/components/vscode-workbench/view/VSCodeWorkbench.tsx',