@pixelbyte-software/pixcode 1.53.21 → 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-
|
|
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.
|
|
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",
|
|
@@ -63,6 +63,14 @@ const checks = [
|
|
|
63
63
|
source.includes('max-w-full'),
|
|
64
64
|
message: 'Shell must support true headerless rendering and a stable terminal fit container.',
|
|
65
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
|
+
},
|
|
66
74
|
{
|
|
67
75
|
path: 'src/components/shell/utils/terminalStyles.ts',
|
|
68
76
|
assert: (source) =>
|