@pixelbyte-software/pixcode 1.53.20 → 1.53.21
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-yB0D3apv.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.21",
|
|
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,14 +49,15 @@ 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'),
|
|
@@ -83,9 +84,14 @@ const checks = [
|
|
|
83
84
|
path: 'src/components/vscode-workbench/view/VSCodeWorkbench.tsx',
|
|
84
85
|
assert: (source) =>
|
|
85
86
|
source.includes("autoConnect={canAutoConnect && tab.id === activeCliTab?.id}") &&
|
|
87
|
+
source.includes('layoutSignal={rightPaneWidth}') &&
|
|
88
|
+
source.includes('right-cli:${layoutSignal}') &&
|
|
89
|
+
source.includes('getRightPaneMaxWidth') &&
|
|
90
|
+
source.includes('RIGHT_HARD_MAX_WIDTH') &&
|
|
91
|
+
!source.includes('RIGHT_MAX_WIDTH = 680') &&
|
|
86
92
|
source.includes("absolute inset-0 min-w-0 overflow-hidden") &&
|
|
87
93
|
source.includes("h-full min-w-0 shrink-0 overflow-hidden bg-background"),
|
|
88
|
-
message: 'Right CLI panel must keep hidden tabs disconnected and
|
|
94
|
+
message: 'Right CLI panel must keep hidden tabs disconnected, refit on resize, and avoid a narrow fixed width cap.',
|
|
89
95
|
},
|
|
90
96
|
];
|
|
91
97
|
|