@mindexec/cli 0.2.262 → 0.2.264

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.262",
3
+ "version": "0.2.264",
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 = '20260620-css3d-flat-wheel-v709';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v712';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -3905,6 +3905,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
3905
3905
  this._lastLocalSnapGridTransformKey = '';
3906
3906
  this._lastLocalSnapGridOpacity = '';
3907
3907
  this._localSnapGridStyleDeferredForZoom = false;
3908
+ this._localSnapGridPointerWakeDeferredForZoom = false;
3908
3909
  this._lastSnapGridClientX = null;
3909
3910
  this._lastSnapGridClientY = null;
3910
3911
  this._animationIdleTimerId = null;
@@ -4621,6 +4622,51 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4621
4622
  return true;
4622
4623
  }
4623
4624
 
4625
+ pauseAnimationLoopForDirectWheelZoom() {
4626
+ if (this._animationLoopRunning !== true ||
4627
+ this._animationLoopExecuting === true ||
4628
+ this.isZooming !== true ||
4629
+ this.isPanning === true ||
4630
+ this.isLoading === true ||
4631
+ this.isSelecting === true ||
4632
+ this.isDraggingNode === true ||
4633
+ this.isDraggingMultipleNodes === true ||
4634
+ this.isResizing === true ||
4635
+ this.isWindowResizing === true ||
4636
+ this._cssParentRepairNeeded === true) {
4637
+ return false;
4638
+ }
4639
+
4640
+ const forceUpdateFrames = Math.max(0, Number(this._forceUpdateFrames || 0));
4641
+ const cameraNavigationForceFrames = Math.max(0, Number(this._cameraNavigationForceFrames || 0));
4642
+ const hasNonCameraNavigationForcedUpdate =
4643
+ forceUpdateFrames > 0 &&
4644
+ cameraNavigationForceFrames < forceUpdateFrames;
4645
+ if (hasNonCameraNavigationForcedUpdate === true) {
4646
+ return false;
4647
+ }
4648
+
4649
+ let paused = false;
4650
+ if (this.animationFrameId) {
4651
+ this._cancelVisualAnimationFrame(this.animationFrameId);
4652
+ this.animationFrameId = null;
4653
+ paused = true;
4654
+ }
4655
+
4656
+ if (this._animationIdleTimerId) {
4657
+ clearTimeout(this._animationIdleTimerId);
4658
+ this._animationIdleTimerId = null;
4659
+ paused = true;
4660
+ }
4661
+
4662
+ if (paused === true) {
4663
+ this._directWheelZoomPausedAnimationLoop = true;
4664
+ this._lastAnimationLoopDelayMs = CAMERA_ZOOM_END_DELAY_MS;
4665
+ }
4666
+
4667
+ return paused;
4668
+ }
4669
+
4624
4670
  getCurrentBoardId() {
4625
4671
  return window.mindMap?.activeBoardId || _currentBoardId || null;
4626
4672
  }
@@ -5477,6 +5523,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5477
5523
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5478
5524
  }
5479
5525
  syncBusinessAutomationEdgesForCameraNavigation(this);
5526
+ this.pauseAnimationLoopForDirectWheelZoom?.();
5480
5527
  return true;
5481
5528
  }
5482
5529
 
@@ -6545,6 +6592,19 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6545
6592
  updateCursorDomElement(this);
6546
6593
  this._cursorDomDeferredForMotion = false;
6547
6594
  }
6595
+ if (zoomEndedThisFrame === true) {
6596
+ const shouldReconcileLocalSnapGridAfterZoom = !!(
6597
+ this._isLocalSnapGridThemeEnabled?.() === true &&
6598
+ (
6599
+ this._localSnapGridStyleDeferredForZoom === true ||
6600
+ this._localSnapGridPointerWakeDeferredForZoom === true
6601
+ )
6602
+ );
6603
+ this._localSnapGridPointerWakeDeferredForZoom = false;
6604
+ if (shouldReconcileLocalSnapGridAfterZoom === true) {
6605
+ this._syncLocalSnapGridLayer(true);
6606
+ }
6607
+ }
6548
6608
  if (cameraEndedThisFrame) {
6549
6609
  this._cameraNavigationOverlayInputTime = 0;
6550
6610
  this._overlayDirty = true;
@@ -8535,21 +8595,21 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8535
8595
  !visibilityChangedThisFrame &&
8536
8596
  !lodVisualEpochChangedThisFrame
8537
8597
  );
8598
+ const hasBusinessAutomationEdgeDirtyWork = !!(
8599
+ this._businessAutomationEdgesDirty === true ||
8600
+ this._businessAutomationConnectionDraftActive === true ||
8601
+ (this._businessAutomationEdgeRenderActive === true && !this._businessAutomationEdgeRenderState) ||
8602
+ isNodeInteracting === true ||
8603
+ hasNonCameraNavigationForcedUpdate === true ||
8604
+ visibilityChangedThisFrame === true ||
8605
+ lodVisualEpochChangedThisFrame === true
8606
+ );
8538
8607
  const shouldSyncBusinessAutomationEdges =
8539
8608
  hasBusinessAutomationEdgeLayer &&
8540
8609
  window.MindMapCss3DManager?.renderBusinessAutomationEdges &&
8541
8610
  shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
8542
8611
  shouldDeferBusinessAutomationEdgesForCameraMotion !== true &&
8543
- (
8544
- this._businessAutomationEdgeRenderActive === true ||
8545
- this.isPanning === true ||
8546
- this.isZooming === true ||
8547
- isCameraMoving === true ||
8548
- isNodeInteracting === true ||
8549
- hasNonCameraNavigationForcedUpdate === true ||
8550
- visibilityChangedThisFrame === true ||
8551
- lodVisualEpochChangedThisFrame === true
8552
- );
8612
+ hasBusinessAutomationEdgeDirtyWork === true;
8553
8613
  if (shouldThrottleBusinessAutomationEdgesForCameraMotion === true ||
8554
8614
  shouldDeferBusinessAutomationEdgesForCameraMotion === true) {
8555
8615
  this._businessAutomationEdgesDeferredForMotion = true;
@@ -10644,6 +10644,7 @@
10644
10644
  const hitLayer = module._businessAutomationEdgeLayer || (module._businessAutomationEdgeRenderActive ? ensureBusinessAutomationEdgeLayer(module) : null);
10645
10645
  const visualLayer = module._businessAutomationEdgeVisualLayer || null;
10646
10646
  if (!hitLayer || !visualLayer) {
10647
+ module._businessAutomationEdgesDirty = module._businessAutomationEdgeRenderActive === true;
10647
10648
  return;
10648
10649
  }
10649
10650
  syncBusinessAutomationEdgeLayerOrder(module);
@@ -10669,6 +10670,7 @@
10669
10670
 
10670
10671
  if (edges.length === 0 && !_businessAutomationConnectionDraft) {
10671
10672
  setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], false);
10673
+ module._businessAutomationEdgesDirty = false;
10672
10674
  return;
10673
10675
  }
10674
10676
  setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], true);
@@ -10791,6 +10793,7 @@
10791
10793
  setBusinessAutomationSvgElementsVisible([renderState.draftPath, renderState.draftTarget], draftVisible);
10792
10794
 
10793
10795
  applyBusinessAutomationResidentOcclusionMask(visualLayer, renderState.visualGroup, module, containerRect, width, height);
10796
+ module._businessAutomationEdgesDirty = false;
10794
10797
  }
10795
10798
 
10796
10799
  function hasBusinessAutomationConnectionDraft() {
@@ -10802,6 +10805,7 @@
10802
10805
  return;
10803
10806
  }
10804
10807
 
10808
+ module._businessAutomationEdgesDirty = true;
10805
10809
  ensureBusinessAutomationEdgeLayer(module);
10806
10810
  if (module._businessAutomationEdgeRenderFrame) {
10807
10811
  return;
@@ -1464,7 +1464,11 @@ window.MindMapInteractions = (function () {
1464
1464
 
1465
1465
  const localSnapGridMoved = module.setLocalSnapGridClientPoint?.(clientX, clientY) === true;
1466
1466
  if (localSnapGridMoved && module._isLocalSnapGridThemeEnabled?.() === true) {
1467
- module.requestAnimationWake?.('local-snap-grid-pointer');
1467
+ if (module.isZooming === true) {
1468
+ module._localSnapGridPointerWakeDeferredForZoom = true;
1469
+ } else {
1470
+ module.requestAnimationWake?.('local-snap-grid-pointer');
1471
+ }
1468
1472
  }
1469
1473
 
1470
1474
  const metrics = getCachedViewportMetrics(module);
@@ -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=20260620-css3d-flat-wheel-v710" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v710" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v712" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v712" />
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 = '20260620-css3d-flat-wheel-v710';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v712';
583
583
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
584
584
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
585
585
  const criticalScripts = [
@@ -590,7 +590,7 @@
590
590
  'background-themes.js',
591
591
  'mind-map-logic-workers.js',
592
592
  // Troika removed
593
- 'texture-worker-manager.js', // ??Web Worker ?�스�??�성
593
+ 'texture-worker-manager.js', // ??Web Worker ?�스�??�성
594
594
  'mind-map-texture-factory.js',
595
595
  'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
596
596
  'mind-map-css3d-manager.js',
@@ -603,7 +603,7 @@
603
603
  'mind-map-interactions.js',
604
604
  'mind-map-dnd.js',
605
605
  'mind-map-lod-renderer.js',
606
- 'mind-map-text-lod-system.js', // ??Text LOD ?�스??(?�적 ?�스�??�질)
606
+ 'mind-map-text-lod-system.js', // ??Text LOD ?�스??(?�적 ?�스�??�질)
607
607
  'mind-map-core.js',
608
608
  'mindmap-toolbar.js',
609
609
  'token-manager.js',
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "i5VgbkGW",
2
+ "version": "q8TDwBKS",
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-zA1z44n8LRbB570BkhjJ7VS8fEWJ72lUn+PST+8pR0M=",
81
+ "hash": "sha256-RQbjofk+Lk0yfrB6PluYoJKVJmdB/sAv3ISNjwScjCg=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-3VNh7dLgyvqfHytYI283FCIN3TsUUK7Qt1YPj1HNJFY=",
89
+ "hash": "sha256-fcU6DmUUw/iLoW3TWn1UKW9+2+Vfqa2O1QDRg9Az2JE=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-o5V0YYMPabf5eB2Z/rGiGB4Ggv3HEaLsCXSq0xY4dPQ=",
109
+ "hash": "sha256-TLgqElMhXUaNKNxPc2h8SJhr/YhkvBFS7U8kwf7AVZw=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-jdNq8XWpVAdXAmN23SQljQN3nWt1r1SX2Cfu+te7SmY=",
837
+ "hash": "sha256-hTra3gg8X1Oc6i5im/P0HR5OaPtMZSj9Vwh9BXJYHao=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: i5VgbkGW */
1
+ /* Manifest version: q8TDwBKS */
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