@mindexec/cli 0.2.332 → 0.2.333

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.332",
3
+ "version": "0.2.333",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260621-css3d-external-media-cors-v816';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-remote-fleet-flat-guard-v817';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -953,6 +953,45 @@
953
953
  element.style.visibility !== 'hidden';
954
954
  }
955
955
 
956
+ function getCss3dFlatSceneMetadataValue(model, key) {
957
+ if (!model || !key) {
958
+ return '';
959
+ }
960
+
961
+ const metadata = model.metadata || model.Metadata || null;
962
+ if (!metadata) {
963
+ return '';
964
+ }
965
+
966
+ if (typeof metadata.get === 'function') {
967
+ const mapValue = metadata.get(key);
968
+ return mapValue === undefined || mapValue === null ? '' : String(mapValue).trim();
969
+ }
970
+
971
+ if (typeof metadata === 'object') {
972
+ for (const [metadataKey, metadataValue] of Object.entries(metadata)) {
973
+ if (String(metadataKey || '').toLowerCase() === String(key || '').toLowerCase()) {
974
+ return metadataValue === undefined || metadataValue === null ? '' : String(metadataValue).trim();
975
+ }
976
+ }
977
+ }
978
+
979
+ return '';
980
+ }
981
+
982
+ function isRemoteFleetCss3dFlatSceneSurface(model, element) {
983
+ const semanticType = getCss3dFlatSceneMetadataValue(model, 'RemoteFleetSemanticType')
984
+ || getCss3dFlatSceneMetadataValue(model, 'SemanticType');
985
+ if (/^RemoteFleet(?:Monitor|Device)$/i.test(semanticType)) {
986
+ return true;
987
+ }
988
+
989
+ return !!(
990
+ element?.classList?.contains?.('map-node-remote-fleet') === true ||
991
+ element?.querySelector?.('.map-node-remote-fleet, [data-semantic-type="RemoteFleetMonitor"], [data-semantic-type="RemoteFleetDevice"]')
992
+ );
993
+ }
994
+
956
995
  function isCss3dEntryUnsafeForSettledFlatScene(entry) {
957
996
  const model = entry?.model || {};
958
997
  const type = String(model.contentType ?? model.ContentType ?? '').trim().toLowerCase();
@@ -977,6 +1016,10 @@
977
1016
  return true;
978
1017
  }
979
1018
 
1019
+ if (isRemoteFleetCss3dFlatSceneSurface(model, element) === true) {
1020
+ return true;
1021
+ }
1022
+
980
1023
  if ((classList?.contains?.('node-type-video') === true && isLowDetailVideoProxy !== true) ||
981
1024
  classList?.contains?.('node-type-csv-table') === true ||
982
1025
  classList?.contains?.('node-type-templatelauncher') === true) {
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-css3d-external-media-cors-v816';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-remote-fleet-flat-guard-v817';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Business Execution OS for solo builders</title>
8
8
  <meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-css3d-external-media-cors-v816" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-css3d-external-media-cors-v816" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-remote-fleet-flat-guard-v817" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-remote-fleet-flat-guard-v817" />
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 = '20260621-css3d-external-media-cors-v816';
582
+ const scriptVersion = '20260621-remote-fleet-flat-guard-v817';
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": "XKU+Kdyr",
2
+ "version": "QlhDFUWA",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-kJvBszB2Gms78fh5Wt6KGcELHDW/IE6+oASm1AKQs3E=",
81
+ "hash": "sha256-/jQH/gQsGeFFq3YYK8HUWI5VMRDgFypdi3RXUvKcI/A=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-Nbxkotq7rMPYUTVdfbAEUeUbqO5S/xVxIgA+wK5qlwc=",
117
+ "hash": "sha256-BnNYgQ1Xox84ONaqI/KpxNrUED/fnP6zahXqiE72lS4=",
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-p3ZxuECZTbCd3eSWE8Wy2AoO7vQjXANWt1fp4dmfSsw=",
837
+ "hash": "sha256-Ce7sOA795xMWTdeqE6R7eC4FAPEHUTlqOIiKCW9GQgE=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: XKU+Kdyr */
1
+ /* Manifest version: QlhDFUWA */
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