@mindexec/cli 0.2.290 → 0.2.291

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.290",
3
+ "version": "0.2.291",
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-v736';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v737';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -6829,7 +6829,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6829
6829
 
6830
6830
  // ▼▼▼ [Fix] 줌 종료 쿨다운 - 휠 입력 후 일정 시간 대기 ▼▼▼
6831
6831
  // _zoomInputTime은 interactions.js에서 휠 입력 시 설정됨
6832
- const zoomNow = performance.now();
6832
+ const zoomNow = frameStart;
6833
6833
  const lastZoomInput = this._zoomInputTime || 0;
6834
6834
  const timeSinceLastInput = zoomNow - lastZoomInput;
6835
6835
 
@@ -6870,6 +6870,50 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6870
6870
  return;
6871
6871
  }
6872
6872
 
6873
+ const canAttemptEarliestCameraOnlyFrame =
6874
+ CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED === true &&
6875
+ (
6876
+ isCameraMoving === true ||
6877
+ this.isPanning === true ||
6878
+ this.isZooming === true
6879
+ ) &&
6880
+ this.isSelecting !== true &&
6881
+ this.isDraggingNode !== true &&
6882
+ this.isDraggingMultipleNodes !== true &&
6883
+ this.isResizing !== true &&
6884
+ this.isWindowResizing !== true &&
6885
+ this.isLoading !== true;
6886
+ if (canAttemptEarliestCameraOnlyFrame === true) {
6887
+ if (tryRunUltraEarlyCameraOnlyFrame(
6888
+ this,
6889
+ loop,
6890
+ frameStart,
6891
+ isCameraMoving,
6892
+ shouldCaptureFramePerf,
6893
+ _frameProfTimes,
6894
+ _profileSection
6895
+ ) === true ||
6896
+ tryRunUltraEarlyResidentCameraOnlyFrame(
6897
+ this,
6898
+ loop,
6899
+ frameStart,
6900
+ isCameraMoving,
6901
+ shouldCaptureFramePerf,
6902
+ _frameProfTimes,
6903
+ _profileSection
6904
+ ) === true) {
6905
+ this.frameCount = (this.frameCount || 0) + 1;
6906
+ this._viewSyncMotionActive = true;
6907
+ this._cameraMovingThisFrame = isCameraMoving === true;
6908
+ this._wasZoomingLastFrame = this.isZooming === true;
6909
+ this._wasPanningLastFrame = this.isPanning === true;
6910
+ this._wasCameraMovingLastFrame = isCameraMoving === true;
6911
+ this._wasResizingLastFrame = this.isResizing === true;
6912
+ this.prevIsCameraMoving = isCameraMoving === true;
6913
+ return;
6914
+ }
6915
+ }
6916
+
6873
6917
  if (isCameraMoving !== this.prevIsCameraMoving) {
6874
6918
  const shouldSyncCss3dWillChangeForCameraMotion =
6875
6919
  this.renderDebugFlags?.enableCss3dWillChange === true;
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "vi01tz7I",
2
+ "version": "++e3HCEL",
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-ISEggFRt/bAkomXZWDQTrm3AQdkKZTQMfSeGpV2Sggo=",
81
+ "hash": "sha256-bABeX8wANAaPRLG1o7ZxQkUkfqWUzChfMUTxUgLiyAA=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: vi01tz7I */
1
+ /* Manifest version: ++e3HCEL */
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