@mindexec/cli 0.2.248 → 0.2.249

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.248",
3
+ "version": "0.2.249",
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-wheel-zoom-freeze-first-v695';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-wheel-zoom-theme-freeze-v696';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -6578,7 +6578,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6578
6578
  if (canReuseWebglCanvasForImmediateMotion === true) {
6579
6579
  deferContinuousThemeForCameraMotion(this);
6580
6580
  }
6581
- if (!canReuseWebglCanvasForImmediateMotion &&
6581
+ if (shouldFreezeWebglCanvasForImmediateZoom !== true &&
6582
+ !canReuseWebglCanvasForImmediateMotion &&
6582
6583
  renderDebugFlags.enableThemeAnimation !== false &&
6583
6584
  this.currentThemeObject &&
6584
6585
  typeof this.currentThemeObject.animate === 'function') {
@@ -6740,7 +6741,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6740
6741
  }
6741
6742
 
6742
6743
  updateCursorDomElement(this);
6744
+ const shouldFreezeWebglCanvasForStationaryZoom =
6745
+ shouldFreezeWebglSurfaceForZoom(this) === true;
6743
6746
  const canReuseWebglCanvasForStationaryMotion = !!(
6747
+ shouldFreezeWebglCanvasForStationaryZoom !== true &&
6744
6748
  canUseWebglCanvasTransformForCameraMotion(this) === true &&
6745
6749
  isWebglRenderEnabled &&
6746
6750
  this._lastWebglRenderedCameraState &&
@@ -6749,7 +6753,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6749
6753
  if (canReuseWebglCanvasForStationaryMotion === true) {
6750
6754
  deferContinuousThemeForCameraMotion(this);
6751
6755
  }
6752
- if (!canReuseWebglCanvasForStationaryMotion &&
6756
+ if (shouldFreezeWebglCanvasForStationaryZoom !== true &&
6757
+ !canReuseWebglCanvasForStationaryMotion &&
6753
6758
  renderDebugFlags.enableThemeAnimation !== false &&
6754
6759
  this.currentThemeObject &&
6755
6760
  typeof this.currentThemeObject.animate === 'function') {
@@ -6784,7 +6789,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6784
6789
  uaStationaryVisualMotion: true
6785
6790
  };
6786
6791
  } else {
6787
- if (shouldFreezeWebglSurfaceForZoom(this) === true) {
6792
+ if (shouldFreezeWebglCanvasForStationaryZoom === true) {
6788
6793
  markWebglSurfaceFrozenForZoom(this, 'uaStationaryVisualMotion');
6789
6794
  } else {
6790
6795
  this._clearWebglCanvasCameraTransform();
@@ -6926,7 +6931,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6926
6931
  }
6927
6932
 
6928
6933
  updateCursorDomElement(this);
6934
+ const shouldFreezeWebglCanvasForResidentZoom =
6935
+ shouldFreezeWebglSurfaceForZoom(this) === true;
6929
6936
  const canReuseWebglCanvasForResidentMotion = !!(
6937
+ shouldFreezeWebglCanvasForResidentZoom !== true &&
6930
6938
  canUseWebglCanvasTransformForCameraMotion(this) === true &&
6931
6939
  isWebglRenderEnabled === true &&
6932
6940
  this._lastWebglRenderedCameraState &&
@@ -6935,7 +6943,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6935
6943
  if (canReuseWebglCanvasForResidentMotion === true) {
6936
6944
  deferContinuousThemeForCameraMotion(this);
6937
6945
  }
6938
- if (!canReuseWebglCanvasForResidentMotion &&
6946
+ if (shouldFreezeWebglCanvasForResidentZoom !== true &&
6947
+ !canReuseWebglCanvasForResidentMotion &&
6939
6948
  renderDebugFlags.enableThemeAnimation !== false &&
6940
6949
  this.currentThemeObject &&
6941
6950
  typeof this.currentThemeObject.animate === 'function') {
@@ -6969,7 +6978,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6969
6978
  uaResidentVisualOnlyMotion: true
6970
6979
  };
6971
6980
  } else {
6972
- if (shouldFreezeWebglSurfaceForZoom(this) === true) {
6981
+ if (shouldFreezeWebglCanvasForResidentZoom === true) {
6973
6982
  markWebglSurfaceFrozenForZoom(this, 'uaResidentVisualOnlyMotion');
6974
6983
  } else {
6975
6984
  this._clearWebglCanvasCameraTransform();
@@ -7158,8 +7167,11 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7158
7167
  const shouldSampleWebglDuringCameraMotion =
7159
7168
  renderDebugFlags.sampleWebglDuringCameraMotion === true &&
7160
7169
  (this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0;
7170
+ const shouldFreezeWebglCanvasForEarlyZoom =
7171
+ shouldFreezeWebglSurfaceForZoom(this) === true;
7161
7172
  let usedWebglCanvasCameraTransformEarly = false;
7162
- if (shouldSampleWebglDuringCameraMotion) {
7173
+ if (shouldSampleWebglDuringCameraMotion &&
7174
+ shouldFreezeWebglCanvasForEarlyZoom !== true) {
7163
7175
  updateCursorDomElement(this);
7164
7176
  if (isWebglRenderEnabled && this.renderer && this.scene && this.camera) {
7165
7177
  this._clearWebglCanvasCameraTransform();
@@ -7175,6 +7187,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7175
7187
  } : null;
7176
7188
  }
7177
7189
  } else if (isWebglRenderEnabled &&
7190
+ shouldFreezeWebglCanvasForEarlyZoom === true) {
7191
+ markWebglSurfaceFrozenForZoom(this, 'uaEarlyCameraOnly');
7192
+ } else if (isWebglRenderEnabled &&
7193
+ shouldFreezeWebglCanvasForEarlyZoom !== true &&
7178
7194
  canUseWebglCanvasTransformForCameraMotion(this) === true) {
7179
7195
  usedWebglCanvasCameraTransformEarly =
7180
7196
  this._applyWebglCanvasCameraTransform() === true;
@@ -7191,36 +7207,32 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7191
7207
  uaEarlyCameraOnly: true
7192
7208
  };
7193
7209
  } else if (this.renderer && this.scene && this.camera) {
7194
- if (shouldFreezeWebglSurfaceForZoom(this) === true) {
7195
- markWebglSurfaceFrozenForZoom(this, 'uaEarlyCameraOnly');
7196
- } else {
7197
- let hiddenEarlyCameraMotionThemeObject = null;
7198
- this._clearWebglCanvasCameraTransform();
7199
- if (this._isMotionGridThemeEnabled() === true &&
7200
- this.currentThemeObject &&
7201
- this.currentThemeObject.visible !== false) {
7202
- hiddenEarlyCameraMotionThemeObject = this.currentThemeObject;
7203
- hiddenEarlyCameraMotionThemeObject.visible = false;
7204
- }
7205
- try {
7206
- this.renderer.render(this.scene, this.camera);
7207
- } finally {
7208
- if (hiddenEarlyCameraMotionThemeObject) {
7209
- hiddenEarlyCameraMotionThemeObject.visible = true;
7210
- }
7210
+ let hiddenEarlyCameraMotionThemeObject = null;
7211
+ this._clearWebglCanvasCameraTransform();
7212
+ if (this._isMotionGridThemeEnabled() === true &&
7213
+ this.currentThemeObject &&
7214
+ this.currentThemeObject.visible !== false) {
7215
+ hiddenEarlyCameraMotionThemeObject = this.currentThemeObject;
7216
+ hiddenEarlyCameraMotionThemeObject.visible = false;
7217
+ }
7218
+ try {
7219
+ this.renderer.render(this.scene, this.camera);
7220
+ } finally {
7221
+ if (hiddenEarlyCameraMotionThemeObject) {
7222
+ hiddenEarlyCameraMotionThemeObject.visible = true;
7211
7223
  }
7212
- this._recordWebglRenderedCameraState();
7213
- const renderInfo = this.renderer?.info?.render || null;
7214
- this._lastWebglRenderInfo = renderInfo ? {
7215
- calls: Number(renderInfo.calls || 0),
7216
- triangles: Number(renderInfo.triangles || 0),
7217
- points: Number(renderInfo.points || 0),
7218
- lines: Number(renderInfo.lines || 0),
7219
- backgroundThemeHidden: hiddenEarlyCameraMotionThemeObject ? true : undefined,
7220
- uaEarlyCameraOnly: true,
7221
- webglCanvasCameraBootstrap: true
7222
- } : null;
7223
7224
  }
7225
+ this._recordWebglRenderedCameraState();
7226
+ const renderInfo = this.renderer?.info?.render || null;
7227
+ this._lastWebglRenderInfo = renderInfo ? {
7228
+ calls: Number(renderInfo.calls || 0),
7229
+ triangles: Number(renderInfo.triangles || 0),
7230
+ points: Number(renderInfo.points || 0),
7231
+ lines: Number(renderInfo.lines || 0),
7232
+ backgroundThemeHidden: hiddenEarlyCameraMotionThemeObject ? true : undefined,
7233
+ uaEarlyCameraOnly: true,
7234
+ webglCanvasCameraBootstrap: true
7235
+ } : null;
7224
7236
  } else {
7225
7237
  this._lastWebglRenderInfo = {
7226
7238
  calls: 0,
@@ -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-wheel-zoom-freeze-first-v695" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-wheel-zoom-freeze-first-v695" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-wheel-zoom-theme-freeze-v696" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-wheel-zoom-theme-freeze-v696" />
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-wheel-zoom-freeze-first-v695';
582
+ const scriptVersion = '20260620-wheel-zoom-theme-freeze-v696';
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": "Zi67gVG4",
2
+ "version": "2DFGZ6E2",
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-3CJni1dXUFwnlvRezSOK8f58AxKKAo8Ao9saMsOvUU0=",
81
+ "hash": "sha256-356I4fHy6ByNlYBqA8rC+TXcf6xUr1k8vVBhC775oqk=",
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-NfUBTHpczaona1Kcls5Lx+NYpNeHdwUmtGXsIz+eJR0=",
837
+ "hash": "sha256-v4rz25fB9OXXL/cR+v854AmR0oLaCK9ysKZXr/pKvaY=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: Zi67gVG4 */
1
+ /* Manifest version: 2DFGZ6E2 */
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