@mindexec/cli 0.2.82 → 0.2.83
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/package.json
CHANGED
|
@@ -4242,6 +4242,7 @@
|
|
|
4242
4242
|
|
|
4243
4243
|
const entry = nodeObjectsById.get(nodeId);
|
|
4244
4244
|
if (!entry?.cssObject || !supportsCss3dNodeModel(entry.model)) continue;
|
|
4245
|
+
if (isRemoteFleetNodeModel(entry.model)) continue;
|
|
4245
4246
|
if (shouldShowAgentConsoleInLodBand(lodBand) && hasAgentConsoleOpenForEntry(entry)) continue;
|
|
4246
4247
|
|
|
4247
4248
|
nextWarmIds.add(nodeId);
|
|
@@ -4270,7 +4271,9 @@
|
|
|
4270
4271
|
for (let i = 0; i < warmIds.length; i++) {
|
|
4271
4272
|
const nodeId = warmIds[i];
|
|
4272
4273
|
if (keepAttachedIds?.has(nodeId)) continue;
|
|
4273
|
-
|
|
4274
|
+
const entry = nodeObjectsById.get(nodeId);
|
|
4275
|
+
if (isRemoteFleetNodeModel(entry?.model)) continue;
|
|
4276
|
+
this._detachCss3dObject(entry);
|
|
4274
4277
|
}
|
|
4275
4278
|
}
|
|
4276
4279
|
|
|
@@ -4904,12 +4907,19 @@
|
|
|
4904
4907
|
continue;
|
|
4905
4908
|
}
|
|
4906
4909
|
|
|
4907
|
-
|
|
4910
|
+
const cssObject = entry.cssObject || null;
|
|
4911
|
+
const cssElement = cssObject?.element || null;
|
|
4912
|
+
const cssAttached = !!cssObject?.parent;
|
|
4913
|
+
const cssDisplayed = !!cssElement &&
|
|
4914
|
+
cssElement.style.display !== 'none' &&
|
|
4915
|
+
cssElement.style.visibility !== 'hidden';
|
|
4916
|
+
|
|
4917
|
+
if (cssObject?.visible === true && cssAttached && cssDisplayed) {
|
|
4908
4918
|
count++;
|
|
4909
4919
|
continue;
|
|
4910
4920
|
}
|
|
4911
4921
|
|
|
4912
|
-
if (
|
|
4922
|
+
if (cssAttached && cssDisplayed) {
|
|
4913
4923
|
count++;
|
|
4914
4924
|
}
|
|
4915
4925
|
}
|
|
@@ -6044,6 +6054,15 @@
|
|
|
6044
6054
|
}
|
|
6045
6055
|
}
|
|
6046
6056
|
}
|
|
6057
|
+
const shouldSyncRemoteFleetCss3d =
|
|
6058
|
+
bandChangedWithoutModeSwitch === true ||
|
|
6059
|
+
this._instancesDirty === true ||
|
|
6060
|
+
this._isNodeArrayDirty === true ||
|
|
6061
|
+
(this._lodRemoteFleetCssNodeIds?.size > 0 &&
|
|
6062
|
+
this._getActiveRemoteFleetCssLodCount(module) <= 0);
|
|
6063
|
+
if (shouldSyncRemoteFleetCss3d) {
|
|
6064
|
+
this._syncTemplateLauncherCss3dForLod(nodeObjectsById, module);
|
|
6065
|
+
}
|
|
6047
6066
|
this._setInstancedAgentBadgeVisibility(lodBand === 'MID');
|
|
6048
6067
|
this._setInstancedFarInsetBorderVisibility(lodBand === 'FAR');
|
|
6049
6068
|
if (this.instancedHaloMesh) {
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<title>MindExec | Run your ideas as AI task graphs</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-mdm-far-css-v542" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-mdm-far-css-v542" />
|
|
12
12
|
<!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?꿎뼯??-->
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260614-
|
|
582
|
+
const scriptVersion = '20260614-mdm-far-css-v542';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "J05byAc8",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-XwNOU+9TwMGIuKGjkijfVM68KlLN7k0fUYB/aInPg0k=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256
|
|
837
|
+
"hash": "sha256-/5GW07FXqRA2ifuVdwy1QvN9Ix3pMFdd0OmD+Pq388I=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|