@mindexec/cli 0.2.262 → 0.2.263

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.263",
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-v711';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -4621,6 +4621,51 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4621
4621
  return true;
4622
4622
  }
4623
4623
 
4624
+ pauseAnimationLoopForDirectWheelZoom() {
4625
+ if (this._animationLoopRunning !== true ||
4626
+ this._animationLoopExecuting === true ||
4627
+ this.isZooming !== true ||
4628
+ this.isPanning === true ||
4629
+ this.isLoading === true ||
4630
+ this.isSelecting === true ||
4631
+ this.isDraggingNode === true ||
4632
+ this.isDraggingMultipleNodes === true ||
4633
+ this.isResizing === true ||
4634
+ this.isWindowResizing === true ||
4635
+ this._cssParentRepairNeeded === true) {
4636
+ return false;
4637
+ }
4638
+
4639
+ const forceUpdateFrames = Math.max(0, Number(this._forceUpdateFrames || 0));
4640
+ const cameraNavigationForceFrames = Math.max(0, Number(this._cameraNavigationForceFrames || 0));
4641
+ const hasNonCameraNavigationForcedUpdate =
4642
+ forceUpdateFrames > 0 &&
4643
+ cameraNavigationForceFrames < forceUpdateFrames;
4644
+ if (hasNonCameraNavigationForcedUpdate === true) {
4645
+ return false;
4646
+ }
4647
+
4648
+ let paused = false;
4649
+ if (this.animationFrameId) {
4650
+ this._cancelVisualAnimationFrame(this.animationFrameId);
4651
+ this.animationFrameId = null;
4652
+ paused = true;
4653
+ }
4654
+
4655
+ if (this._animationIdleTimerId) {
4656
+ clearTimeout(this._animationIdleTimerId);
4657
+ this._animationIdleTimerId = null;
4658
+ paused = true;
4659
+ }
4660
+
4661
+ if (paused === true) {
4662
+ this._directWheelZoomPausedAnimationLoop = true;
4663
+ this._lastAnimationLoopDelayMs = CAMERA_ZOOM_END_DELAY_MS;
4664
+ }
4665
+
4666
+ return paused;
4667
+ }
4668
+
4624
4669
  getCurrentBoardId() {
4625
4670
  return window.mindMap?.activeBoardId || _currentBoardId || null;
4626
4671
  }
@@ -5477,6 +5522,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5477
5522
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5478
5523
  }
5479
5524
  syncBusinessAutomationEdgesForCameraNavigation(this);
5525
+ this.pauseAnimationLoopForDirectWheelZoom?.();
5480
5526
  return true;
5481
5527
  }
5482
5528
 
@@ -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-v711" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v711" />
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-v711';
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": "NFlIAEYu",
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-oPH7NgFD/aMC5uyNB5j+bHrrVVJmt4ySpTDgXHC5800=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-jdNq8XWpVAdXAmN23SQljQN3nWt1r1SX2Cfu+te7SmY=",
837
+ "hash": "sha256-3rA4Y12tE7DBEMBdoNxtSXP29bAbByTEgZVku5GEQyQ=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: i5VgbkGW */
1
+ /* Manifest version: NFlIAEYu */
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