@pixelbyte-software/pixcode 1.48.0 → 1.48.1
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/assets/index-By2TVdoL.css +32 -0
- package/dist/assets/{index-DlAWSDTA.js → index-rGiqd0D-.js} +178 -178
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/scripts/smoke/pixcode-workbench-1-48.mjs +1 -1
- package/scripts/smoke/vscode-workbench-layout.mjs +2 -2
- package/scripts/smoke/vscode-workbench-polish.mjs +58 -0
- package/dist/assets/index-g9NMlzYt.css +0 -32
package/dist/index.html
CHANGED
|
@@ -35,11 +35,11 @@
|
|
|
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-rGiqd0D-.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-CJZjLICi.js">
|
|
42
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
42
|
+
<link rel="stylesheet" crossorigin href="/assets/index-By2TVdoL.css">
|
|
43
43
|
</head>
|
|
44
44
|
<body>
|
|
45
45
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixelbyte-software/pixcode",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.1",
|
|
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",
|
|
@@ -31,7 +31,7 @@ assert.doesNotMatch(loginForm, /login\.layout|setWorkbenchLayout|WorkbenchLayout
|
|
|
31
31
|
assert.doesNotMatch(appearanceTab, /workbenchLayout|WorkbenchLayoutPreference|onWorkbenchLayoutChange|classic/i, 'Appearance settings should not expose layout switching.');
|
|
32
32
|
|
|
33
33
|
assert.match(workbench, /useState<ActivityPanel>\('projects'\)/, 'Workbench should open on the Projects panel.');
|
|
34
|
-
assert.match(workbench, /
|
|
34
|
+
assert.match(workbench, /WorkbenchWorkspaceTabs|WORKBENCH_WORKSPACE_TABS_STORAGE_KEY/, 'Workbench should expose persistent top workspace tabs.');
|
|
35
35
|
assert.match(workbench, /openEditorTabs|activeEditorPath/, 'Workbench editor should keep a Monaco-style tab set.');
|
|
36
36
|
assert.doesNotMatch(workbench, /<ChatInterface/, 'Right workbench panel should not render the chat composer.');
|
|
37
37
|
assert.match(workbench, /WorkbenchCliPanel/, 'Right workbench panel should render the CLI terminal panel.');
|
|
@@ -37,13 +37,13 @@ assert(
|
|
|
37
37
|
workbench.includes('WorkbenchProjectLanding')
|
|
38
38
|
&& workbench.includes("useState<ActivityPanel>('projects')")
|
|
39
39
|
&& workbench.includes('WorkbenchWorkspacePanel')
|
|
40
|
-
&& workbench.includes('
|
|
40
|
+
&& workbench.includes('WorkbenchWorkspaceTabs')
|
|
41
41
|
&& workbench.includes('openEditorTabs')
|
|
42
42
|
&& workbench.includes('activeEditorPath')
|
|
43
43
|
&& workbench.includes('WorkbenchCliPanel')
|
|
44
44
|
&& !workbench.includes('<ChatInterface')
|
|
45
45
|
&& !workbench.includes('TaskMasterPanel'),
|
|
46
|
-
'VSCodeWorkbench should open on Projects, expose workspace
|
|
46
|
+
'VSCodeWorkbench should open on Projects, expose top workspace tabs, tab files, and use terminal-only CLI panel.',
|
|
47
47
|
);
|
|
48
48
|
|
|
49
49
|
assert(
|
|
@@ -53,6 +53,64 @@ assert.match(
|
|
|
53
53
|
'Right workbench pane should use a terminal-only CLI panel.',
|
|
54
54
|
);
|
|
55
55
|
|
|
56
|
+
assert.match(
|
|
57
|
+
workbench,
|
|
58
|
+
/function WorkbenchWorkspaceTabs/,
|
|
59
|
+
'Workbench should render Chrome-style workspace tabs directly under the menu bar.',
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
assert.match(
|
|
63
|
+
workbench,
|
|
64
|
+
/WORKBENCH_WORKSPACE_TABS_STORAGE_KEY/,
|
|
65
|
+
'Workspace tabs should persist names, stars, and open tabs across reloads.',
|
|
66
|
+
);
|
|
67
|
+
|
|
68
|
+
assert.doesNotMatch(
|
|
69
|
+
workbench,
|
|
70
|
+
/workspaceSlots/,
|
|
71
|
+
'Workspace controls should no longer occupy space inside the Explorer panel.',
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
assert.match(
|
|
75
|
+
workbench,
|
|
76
|
+
/editorTabStripRef/,
|
|
77
|
+
'Editor tabs should have a scrollable strip instead of shrinking every tab.',
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
assert.match(
|
|
81
|
+
workbench,
|
|
82
|
+
/handleEditorTabContextMenu/,
|
|
83
|
+
'Editor tabs should expose a right-click context menu.',
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
for (const token of ['closeAllTabs', 'copyPath', 'splitRight', 'splitMoveRight']) {
|
|
87
|
+
assert.match(workbench, new RegExp(token), `Editor tab context menu should support ${token}.`);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
assert.match(
|
|
91
|
+
workbench,
|
|
92
|
+
/SessionProviderLogo/,
|
|
93
|
+
'CLI provider picker should keep provider icons visible.',
|
|
94
|
+
);
|
|
95
|
+
|
|
96
|
+
assert.match(
|
|
97
|
+
workbench,
|
|
98
|
+
/useProviderAuthStatus/,
|
|
99
|
+
'CLI provider picker should show install/update status without opening Settings.',
|
|
100
|
+
);
|
|
101
|
+
|
|
102
|
+
assert.match(
|
|
103
|
+
workbench,
|
|
104
|
+
/autoConnect=\{canAutoConnect\}/,
|
|
105
|
+
'Right CLI terminal should auto-connect when the selected provider can run.',
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
assert.match(
|
|
109
|
+
workbench,
|
|
110
|
+
/function WorkbenchSessionHistory/,
|
|
111
|
+
'CLI history should be integrated as a polished project-scoped panel.',
|
|
112
|
+
);
|
|
113
|
+
|
|
56
114
|
assert.doesNotMatch(
|
|
57
115
|
workbench,
|
|
58
116
|
/return <Sidebar \{\.\.\.sidebarProps\} isMobile=\{false\} \/>/,
|