@pixelbyte-software/pixcode 1.46.0 → 1.46.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/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-DclCFipo.js"></script>
|
|
39
39
|
<link rel="modulepreload" crossorigin href="/assets/vendor-react-D7WwDXvu.js">
|
|
40
40
|
<link rel="modulepreload" crossorigin href="/assets/vendor-codemirror-CzYAOTxS.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-CgRmXRnh.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.46.
|
|
3
|
+
"version": "1.46.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",
|
|
@@ -42,6 +42,18 @@ assert.match(tabSwitcher, /tabs\.controlRoom/, 'Tab switcher should expose the C
|
|
|
42
42
|
|
|
43
43
|
const mainContent = read('src/components/main-content/view/MainContent.tsx');
|
|
44
44
|
assert.match(mainContent, /ControlRoomPage/, 'Main content should render the Control Room page.');
|
|
45
|
+
assert.match(mainContent, /activeTab === 'controlRoom'/, 'Control Room should render as its own primary tab.');
|
|
46
|
+
assert.match(mainContent, /setActiveTab\('controlRoom'\)/, 'Empty-state users should have a direct Control Room launcher.');
|
|
47
|
+
|
|
48
|
+
const mainContentTypes = read('src/components/main-content/types/types.ts');
|
|
49
|
+
assert.match(mainContentTypes, /onOpenControlRoom/, 'Main content state should expose a direct Control Room launcher callback.');
|
|
50
|
+
assert.match(mainContentTypes, /selectedProject: Project \| null/, 'Control Room header should support server-level access without requiring a selected project.');
|
|
51
|
+
|
|
52
|
+
const mainContentHeader = read('src/components/main-content/view/subcomponents/MainContentHeader.tsx');
|
|
53
|
+
assert.match(mainContentHeader, /Open Control Room/, 'Header should include a visible Open Control Room button.');
|
|
54
|
+
|
|
55
|
+
const emptyState = read('src/components/main-content/view/subcomponents/MainContentStateView.tsx');
|
|
56
|
+
assert.match(emptyState, /Open Control Room/, 'Empty project state should include a visible Open Control Room button.');
|
|
45
57
|
|
|
46
58
|
const platformService = read('server/services/platformization.js');
|
|
47
59
|
for (const symbol of [
|