@pixelbyte-software/pixcode 1.53.19 → 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,15 +49,18 @@ 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('
|
|
60
|
+
source.includes('layoutSignal?: string | number | null') &&
|
|
61
|
+
source.includes('pixcode-shell-terminal') &&
|
|
62
|
+
source.includes('min-w-0') &&
|
|
63
|
+
source.includes('max-w-full'),
|
|
61
64
|
message: 'Shell must support true headerless rendering and a stable terminal fit container.',
|
|
62
65
|
},
|
|
63
66
|
{
|
|
@@ -65,7 +68,8 @@ const checks = [
|
|
|
65
68
|
assert: (source) =>
|
|
66
69
|
source.includes('.pixcode-shell-terminal') &&
|
|
67
70
|
source.includes('display: flex') &&
|
|
68
|
-
|
|
71
|
+
source.includes('max-width: 100%') &&
|
|
72
|
+
source.includes('.pixcode-shell-terminal .xterm-viewport'),
|
|
69
73
|
message: 'Terminal styles must avoid forcing viewport height independently from xterm fit.',
|
|
70
74
|
},
|
|
71
75
|
{
|
|
@@ -76,6 +80,19 @@ const checks = [
|
|
|
76
80
|
!source.includes('BOTTOM_TERMINAL_DEFAULT_HEIGHT'),
|
|
77
81
|
message: 'Desktop workbench terminal must use a viewport-aware default height.',
|
|
78
82
|
},
|
|
83
|
+
{
|
|
84
|
+
path: 'src/components/vscode-workbench/view/VSCodeWorkbench.tsx',
|
|
85
|
+
assert: (source) =>
|
|
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') &&
|
|
92
|
+
source.includes("absolute inset-0 min-w-0 overflow-hidden") &&
|
|
93
|
+
source.includes("h-full min-w-0 shrink-0 overflow-hidden bg-background"),
|
|
94
|
+
message: 'Right CLI panel must keep hidden tabs disconnected, refit on resize, and avoid a narrow fixed width cap.',
|
|
95
|
+
},
|
|
79
96
|
];
|
|
80
97
|
|
|
81
98
|
const failures = checks.flatMap(({ path, assert, message }) => {
|