@mindexec/cli 0.2.80 → 0.2.81

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.80",
3
+ "version": "0.2.81",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260609-midfar-idle-atlas-signature-v199';
54
+ const LOD_RENDERER_BUILD_ID = '20260614-remote-fleet-lod-css-v200';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -940,6 +940,7 @@
940
940
  this._consoleNodeIdToIndex = new Map();
941
941
  this._lodConsoleProxyNodeIds = new Set();
942
942
  this._lodImageCssFallbackNodeIds = new Set();
943
+ this._lodRemoteFleetCssNodeIds = new Set();
943
944
  this._lodCleanupPending = true;
944
945
  this._lodCleanupDone = false;
945
946
  this._lodVisualEpoch = 0;
@@ -4404,8 +4405,19 @@
4404
4405
  if (!entry || !isTemplateLauncherModel(entry.model)) continue;
4405
4406
 
4406
4407
  if (isRemoteFleetNodeModel(entry.model)) {
4408
+ const nodeId = String(entry.model?.id || entry.model?.Id || entry.glObject?.userData?.nodeId || '').trim();
4407
4409
  if (isCss3dRendererEnabled(module)) {
4410
+ if (this.isInLODMode === true && nodeId) {
4411
+ this._lodRemoteFleetCssNodeIds.add(nodeId);
4412
+ } else if (nodeId) {
4413
+ this._lodRemoteFleetCssNodeIds.delete(nodeId);
4414
+ }
4408
4415
  this._showNodeCss3d(entry, module);
4416
+ } else {
4417
+ if (nodeId) {
4418
+ this._lodRemoteFleetCssNodeIds.delete(nodeId);
4419
+ }
4420
+ this._hideNodeCss3d(entry);
4409
4421
  }
4410
4422
  continue;
4411
4423
  }
@@ -4424,7 +4436,7 @@
4424
4436
  _showNodeCss3d(entry, module) {
4425
4437
  if (!entry || !window.MindMapCss3DManager) return;
4426
4438
  const model = entry.model;
4427
- const nodeId = model?.id || entry.glObject?.userData?.nodeId;
4439
+ const nodeId = model?.id || model?.Id || entry.glObject?.userData?.nodeId;
4428
4440
  const isMediaNode = isCssMediaFallbackModel(model);
4429
4441
  // Check support
4430
4442
  const supportsCss3d = supportsCss3dNodeModel(model);
@@ -4588,7 +4600,7 @@
4588
4600
  }
4589
4601
 
4590
4602
  _hideNodeCss3d(entry, options = {}) {
4591
- const nodeId = entry?.model?.id || entry?.glObject?.userData?.nodeId;
4603
+ const nodeId = entry?.model?.id || entry?.model?.Id || entry?.glObject?.userData?.nodeId;
4592
4604
  const contentType = getNodeContentType(entry?.model);
4593
4605
  const shouldForceMediaGlFallback =
4594
4606
  (contentType === 'video' || contentType === 'embed') &&
@@ -4636,6 +4648,7 @@
4636
4648
  if (nodeId) {
4637
4649
  this._nearCssVisibleIds.delete(nodeId);
4638
4650
  this._lodImageCssFallbackNodeIds.delete(nodeId);
4651
+ this._lodRemoteFleetCssNodeIds.delete(nodeId);
4639
4652
  }
4640
4653
  if (this._module) {
4641
4654
  this._module._css3dVisualChangedThisFrame = true;
@@ -4869,7 +4882,39 @@
4869
4882
 
4870
4883
  shouldRenderCss3dInLod() {
4871
4884
  return this.isInLODMode === true &&
4872
- this._getActiveCssMediaLodFallbackCount(this._module) > 0;
4885
+ (this._getActiveCssMediaLodFallbackCount(this._module) > 0 ||
4886
+ this._getActiveRemoteFleetCssLodCount(this._module) > 0);
4887
+ }
4888
+
4889
+ _getActiveRemoteFleetCssLodCount(module = this._module) {
4890
+ if (this.isInLODMode !== true || !this._lodRemoteFleetCssNodeIds || this._lodRemoteFleetCssNodeIds.size === 0) {
4891
+ return 0;
4892
+ }
4893
+
4894
+ const nodeObjectsById = module?.nodeObjectsById || this._module?.nodeObjectsById || null;
4895
+ if (!nodeObjectsById) {
4896
+ return this._lodRemoteFleetCssNodeIds.size;
4897
+ }
4898
+
4899
+ let count = 0;
4900
+ for (const nodeId of Array.from(this._lodRemoteFleetCssNodeIds)) {
4901
+ const entry = nodeObjectsById.get(nodeId) || null;
4902
+ if (!entry || !isRemoteFleetNodeModel(entry.model)) {
4903
+ this._lodRemoteFleetCssNodeIds.delete(nodeId);
4904
+ continue;
4905
+ }
4906
+
4907
+ if (entry.cssObject?.visible === true) {
4908
+ count++;
4909
+ continue;
4910
+ }
4911
+
4912
+ if (entry.cssObject?.element && entry.cssObject.element.style.display !== 'none') {
4913
+ count++;
4914
+ }
4915
+ }
4916
+
4917
+ return count;
4873
4918
  }
4874
4919
 
4875
4920
  hasPendingNearCssWarmup(module) {
@@ -9149,6 +9194,7 @@
9149
9194
  this._nearCssVisibleIds.clear();
9150
9195
  this._lodConsoleProxyNodeIds.clear();
9151
9196
  this._lodImageCssFallbackNodeIds.clear();
9197
+ this._lodRemoteFleetCssNodeIds.clear();
9152
9198
  this._clearCss3dQueue();
9153
9199
  this._clearCss3dPrewarmQueue();
9154
9200
  this._css3dProcessing = false;
@@ -9348,6 +9394,7 @@
9348
9394
  this._fullResImageVisualIds?.delete?.(nodeId);
9349
9395
  this._lodConsoleProxyNodeIds?.delete?.(nodeId);
9350
9396
  this._lodImageCssFallbackNodeIds?.delete?.(nodeId);
9397
+ this._lodRemoteFleetCssNodeIds?.delete?.(nodeId);
9351
9398
  removedAny = true;
9352
9399
  }
9353
9400
 
@@ -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-project-gallery-wide-v539" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-project-gallery-wide-v539" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-remote-fleet-lod-css-v540" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-fleet-lod-css-v540" />
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-project-gallery-wide-v539';
582
+ const scriptVersion = '20260614-remote-fleet-lod-css-v540';
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": "6VAyINf9",
2
+ "version": "ZnxoZt/v",
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-pIWayQBgEG/T1yD56k6gUU7n0xcw8p0gd0B4nrO4JoE=",
117
+ "hash": "sha256-DSxOYIbVP3m+Bd5uE+znPhjj7AdoSoXFqaDHjGyvxeQ=",
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-X4tsqKjFV6sGjlubQjsPNtflUqKExI9qAquddtPv4JA=",
837
+ "hash": "sha256-AIIk2wnGNzhNrPNpY2QeXuEnsX9nXDAFFvHQHgcnuqo=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: 6VAyINf9 */
1
+ /* Manifest version: ZnxoZt/v */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4