@mindexec/cli 0.2.269 → 0.2.270

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.269",
3
+ "version": "0.2.270",
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-v717';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v718';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -5495,7 +5495,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5495
5495
  return true;
5496
5496
  }
5497
5497
 
5498
- presentWheelZoomCameraFrame(clientX = null, clientY = null, options = {}) {
5498
+ presentWheelZoomCameraFrame(clientX = null, clientY = null, snapGridPointAlreadySet = false) {
5499
5499
  if (CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED !== true ||
5500
5500
  this.isLoading === true ||
5501
5501
  this.isSelecting === true ||
@@ -5563,7 +5563,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5563
5563
  this._deferPassiveOverlayRefresh = true;
5564
5564
  }
5565
5565
 
5566
- if (options?.snapGridPointAlreadySet !== true &&
5566
+ if (snapGridPointAlreadySet !== true &&
5567
5567
  Number.isFinite(Number(clientX)) &&
5568
5568
  Number.isFinite(Number(clientY))) {
5569
5569
  this.setLocalSnapGridClientPoint?.(Number(clientX), Number(clientY));
@@ -6039,8 +6039,7 @@ window.MindMapInteractions = (function () {
6039
6039
  lastClientX: 0, // 마지막 마우스 X 위치
6040
6040
  lastClientY: 0, // 마지막 마우스 Y 위치
6041
6041
  pending: false, // rAF 대기 중 여부
6042
- frameId: null, // rAF ID
6043
- eventCount: 0
6042
+ frameId: null // rAF ID
6044
6043
  });
6045
6044
  }
6046
6045
  return wheelBuffers.get(module);
@@ -6317,22 +6316,16 @@ window.MindMapInteractions = (function () {
6317
6316
  wheelBuffer.deltaY += deltaY;
6318
6317
  wheelBuffer.lastClientX = e.clientX;
6319
6318
  wheelBuffer.lastClientY = e.clientY;
6320
- wheelBuffer.eventCount = Math.min(1000, Number(wheelBuffer.eventCount || 0) + 1);
6321
-
6322
6319
  scheduleWheelZoomFrame(module, wheelBuffer, () => {
6323
6320
  const accumulatedDeltaY = Number(wheelBuffer.deltaY || 0);
6324
6321
  const clientX = wheelBuffer.lastClientX;
6325
6322
  const clientY = wheelBuffer.lastClientY;
6326
- const eventCount = Number(wheelBuffer.eventCount || 0);
6327
6323
  wheelBuffer.deltaY = 0;
6328
- wheelBuffer.eventCount = 0;
6329
6324
  if (Math.abs(accumulatedDeltaY) <= 0.001) {
6330
6325
  return;
6331
6326
  }
6332
6327
 
6333
- performCameraZoomBuffered(module, accumulatedDeltaY, clientX, clientY, {
6334
- coalescedWheelEvents: eventCount
6335
- });
6328
+ performCameraZoomBuffered(module, accumulatedDeltaY, clientX, clientY);
6336
6329
  });
6337
6330
  }
6338
6331
 
@@ -6414,11 +6407,7 @@ window.MindMapInteractions = (function () {
6414
6407
  const newY = worldMouseY - (worldMouseY - module.targetY) * zoomRatio;
6415
6408
  module.targetX = newX;
6416
6409
  module.targetY = newY;
6417
- const presentedDirectly = module.presentWheelZoomCameraFrame?.(clientX, clientY, {
6418
- reason: 'wheel-zoom-direct',
6419
- coalescedWheelEvents: Number(options.coalescedWheelEvents || 0),
6420
- snapGridPointAlreadySet: true
6421
- }) === true;
6410
+ const presentedDirectly = module.presentWheelZoomCameraFrame?.(clientX, clientY, true) === true;
6422
6411
  const settleScheduled =
6423
6412
  presentedDirectly === true &&
6424
6413
  module.requestWheelZoomDirectSettle?.() === true;
@@ -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-v717" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v717" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v718" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v718" />
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-v717';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v718';
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": "/7T5wh84",
2
+ "version": "voHTdObV",
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-Ikvk4We4OWmiVUpNYw1cLxJ2rG5jF8Ywn2jYMmIAfUw=",
81
+ "hash": "sha256-Rb+Mu9R4krbOB1tj8SdgdfJRke/sjRRNO76jrglDO1M=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-tosOpXqyXDFBnjyuaucNqryVdR3s6BdWEWUuRpeCzgM=",
109
+ "hash": "sha256-JQA4jBklYiBR+NrSTcmyMNFG396DJB04AKiwJHXVeBU=",
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-hImUdqfR91Khdb59Xs20+qDOhbAcjjuT67jpBtox6lU=",
837
+ "hash": "sha256-lkk7lvho5nx0GhK0rdueNTebMEwhgV6R2/+Hwkfksks=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: /7T5wh84 */
1
+ /* Manifest version: voHTdObV */
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