@mindexec/cli 0.2.225 → 0.2.226

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.225",
3
+ "version": "0.2.226",
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 = '20260619-ua-motion-hidden-work-v672';
8
+ const MINDMAP_CORE_BUILD_ID = '20260619-ua-motion-hidden-work-v673';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -1180,9 +1180,13 @@
1180
1180
  }
1181
1181
 
1182
1182
  function tryRunUltraEarlyCameraOnlyFrame(module, loop, frameStart, isCameraMoving, shouldCaptureFramePerf, frameProfTimes, profileSection) {
1183
+ const isCameraNavigationActive =
1184
+ isCameraMoving === true ||
1185
+ module?.isPanning === true ||
1186
+ module?.isZooming === true;
1183
1187
  if (!module ||
1184
1188
  CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED !== true ||
1185
- isCameraMoving !== true ||
1189
+ isCameraNavigationActive !== true ||
1186
1190
  module.isLoading === true ||
1187
1191
  module.isSelecting === true ||
1188
1192
  module.isDraggingNode === true ||
@@ -1351,7 +1355,8 @@
1351
1355
  cameraZ: Number((module.camera?.position?.z || 0).toFixed(2)),
1352
1356
  isZooming: module.isZooming === true,
1353
1357
  isPanning: module.isPanning === true,
1354
- isCameraMoving: true,
1358
+ isCameraMoving: isCameraMoving === true,
1359
+ isCameraNavigationActive: true,
1355
1360
  isInLodMode: false,
1356
1361
  lodBand: module.lodRenderer?._currentLodBand || null,
1357
1362
  visibleNodes: Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0),
@@ -1395,9 +1400,13 @@
1395
1400
  }
1396
1401
 
1397
1402
  function tryRunUltraEarlyResidentCameraOnlyFrame(module, loop, frameStart, isCameraMoving, shouldCaptureFramePerf, frameProfTimes, profileSection) {
1403
+ const isCameraNavigationActive =
1404
+ isCameraMoving === true ||
1405
+ module?.isPanning === true ||
1406
+ module?.isZooming === true;
1398
1407
  if (!module ||
1399
1408
  CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED !== true ||
1400
- isCameraMoving !== true ||
1409
+ isCameraNavigationActive !== true ||
1401
1410
  module.isLoading === true ||
1402
1411
  module.isSelecting === true ||
1403
1412
  module.isDraggingNode === true ||
@@ -1572,7 +1581,8 @@
1572
1581
  cameraZ: Number((module.camera?.position?.z || 0).toFixed(2)),
1573
1582
  isZooming: module.isZooming === true,
1574
1583
  isPanning: module.isPanning === true,
1575
- isCameraMoving: true,
1584
+ isCameraMoving: isCameraMoving === true,
1585
+ isCameraNavigationActive: true,
1576
1586
  isInLodMode: true,
1577
1587
  lodBand: module.lodRenderer?._currentLodBand || null,
1578
1588
  visibleNodes: Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0),
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "DOQXBbI8",
2
+ "version": "36RGH7+F",
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-dAXTBBzz3gWtBqOMk0spDkHg8jlOGS+d4YmCyxO3QsI=",
81
+ "hash": "sha256-FULOYbTxfjP57GtR0ZO6hxJUtWpBojHiKmUJQWOQ6Hw=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: DOQXBbI8 */
1
+ /* Manifest version: 36RGH7+F */
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