@mindexec/cli 0.2.279 → 0.2.280

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.279",
3
+ "version": "0.2.280",
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-v727';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v728';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -7129,7 +7129,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7129
7129
  if (canReuseWebglCanvasForImmediateMotion === true) {
7130
7130
  deferContinuousThemeForCameraMotion(this);
7131
7131
  }
7132
- if (shouldFreezeWebglCanvasForImmediateZoom !== true &&
7132
+ if (this.isZooming !== true &&
7133
+ shouldFreezeWebglCanvasForImmediateZoom !== true &&
7133
7134
  !canReuseWebglCanvasForImmediateMotion &&
7134
7135
  renderDebugFlags.enableThemeAnimation !== false &&
7135
7136
  isLocalSnapGridOnlyTheme(this) !== true &&
@@ -7168,6 +7169,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7168
7169
  } else {
7169
7170
  if (shouldFreezeWebglCanvasForImmediateZoom === true) {
7170
7171
  markWebglSurfaceFrozenForZoom(this, 'uaVisualOnlyMotion');
7172
+ } else if (this.isZooming === true) {
7173
+ deferWebglBootstrapForCameraMotion(this, 'uaVisualOnlyMotion');
7171
7174
  } else {
7172
7175
  this._clearWebglCanvasCameraTransform();
7173
7176
  this.renderer.render(this.scene, this.camera);
@@ -7309,7 +7312,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7309
7312
  if (canReuseWebglCanvasForStationaryMotion === true) {
7310
7313
  deferContinuousThemeForCameraMotion(this);
7311
7314
  }
7312
- if (shouldFreezeWebglCanvasForStationaryZoom !== true &&
7315
+ if (this.isZooming !== true &&
7316
+ shouldFreezeWebglCanvasForStationaryZoom !== true &&
7313
7317
  !canReuseWebglCanvasForStationaryMotion &&
7314
7318
  renderDebugFlags.enableThemeAnimation !== false &&
7315
7319
  isLocalSnapGridOnlyTheme(this) !== true &&
@@ -7348,6 +7352,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7348
7352
  } else {
7349
7353
  if (shouldFreezeWebglCanvasForStationaryZoom === true) {
7350
7354
  markWebglSurfaceFrozenForZoom(this, 'uaStationaryVisualMotion');
7355
+ } else if (this.isZooming === true) {
7356
+ deferWebglBootstrapForCameraMotion(this, 'uaStationaryVisualMotion');
7351
7357
  } else {
7352
7358
  this._clearWebglCanvasCameraTransform();
7353
7359
  this.renderer.render(this.scene, this.camera);
@@ -7504,7 +7510,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7504
7510
  if (canReuseWebglCanvasForResidentMotion === true) {
7505
7511
  deferContinuousThemeForCameraMotion(this);
7506
7512
  }
7507
- if (shouldFreezeWebglCanvasForResidentZoom !== true &&
7513
+ if (this.isZooming !== true &&
7514
+ shouldFreezeWebglCanvasForResidentZoom !== true &&
7508
7515
  !canReuseWebglCanvasForResidentMotion &&
7509
7516
  renderDebugFlags.enableThemeAnimation !== false &&
7510
7517
  isLocalSnapGridOnlyTheme(this) !== true &&
@@ -7542,6 +7549,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7542
7549
  } else {
7543
7550
  if (shouldFreezeWebglCanvasForResidentZoom === true) {
7544
7551
  markWebglSurfaceFrozenForZoom(this, 'uaResidentVisualOnlyMotion');
7552
+ } else if (this.isZooming === true) {
7553
+ deferWebglBootstrapForCameraMotion(this, 'uaResidentVisualOnlyMotion');
7545
7554
  } else {
7546
7555
  this._clearWebglCanvasCameraTransform();
7547
7556
  this.renderer.render(this.scene, this.camera);
@@ -7736,6 +7745,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7736
7745
 
7737
7746
  const shouldSampleWebglDuringCameraMotion =
7738
7747
  renderDebugFlags.sampleWebglDuringCameraMotion === true &&
7748
+ this.isZooming !== true &&
7739
7749
  (this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0;
7740
7750
  const shouldFreezeWebglCanvasForEarlyZoom =
7741
7751
  shouldFreezeWebglSurfaceForZoom(this) === true;
@@ -7776,6 +7786,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7776
7786
  webglCanvasCameraTransform: true,
7777
7787
  uaEarlyCameraOnly: true
7778
7788
  };
7789
+ } else if (this.isZooming === true) {
7790
+ deferWebglBootstrapForCameraMotion(this, 'uaEarlyCameraOnly');
7779
7791
  } else if (this.renderer && this.scene && this.camera) {
7780
7792
  let hiddenEarlyCameraMotionThemeObject = null;
7781
7793
  this._clearWebglCanvasCameraTransform();
@@ -8522,6 +8534,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8522
8534
  // ----------------------------------------------------------------
8523
8535
  const shouldSampleWebglDuringCameraMotion =
8524
8536
  renderDebugFlags.sampleWebglDuringCameraMotion === true &&
8537
+ this.isZooming !== true &&
8525
8538
  (this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0;
8526
8539
  if (isCameraNavigationOnlyInteractiveFrame === true ||
8527
8540
  this.isPanning === true ||
@@ -8646,6 +8659,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8646
8659
  } else {
8647
8660
  if (shouldFreezeWebglSurfaceForZoom(this) === true) {
8648
8661
  markWebglSurfaceFrozenForZoom(this, 'normalWebglRender');
8662
+ } else if (this.isZooming === true &&
8663
+ isCameraNavigationOnlyInteractiveFrame === true &&
8664
+ shouldUpdate !== true &&
8665
+ themeAnimatedThisFrame !== true &&
8666
+ shouldFinalizeWebglCanvasCameraTransform !== true) {
8667
+ deferWebglBootstrapForCameraMotion(this, 'normalZoomCameraMotion');
8649
8668
  } else {
8650
8669
  this._clearWebglCanvasCameraTransform();
8651
8670
  if (shouldHideBackgroundThemeDuringCameraNavigation) {
@@ -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-v727" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v727" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v728" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v728" />
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-v727';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v728';
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": "+of3eWGB",
2
+ "version": "FCFiOPFS",
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-a5GoVAXr9o8emnkh3zlfVxKpMB6zbgA7krlyr5Zu2ns=",
81
+ "hash": "sha256-pMyO/ImYhCgI4GNnRzeHujvl85idQabhgamLQQqHM1k=",
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-wIaDM3o/iRJKNttGSxk6ipjQXlARd1UwOCE8688cDcg=",
837
+ "hash": "sha256-yLo2j8CTV6E9gXnuGf0/o/Uv9Xh3yhcpoJJlzaQ8G1U=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: +of3eWGB */
1
+ /* Manifest version: FCFiOPFS */
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