@mindexec/cli 0.2.247 → 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
|
@@ -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-
|
|
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',
|
|
@@ -1634,7 +1634,10 @@
|
|
|
1634
1634
|
const isWebglRenderEnabled = renderDebugFlags.enableWebglRender !== false;
|
|
1635
1635
|
let usedWebglCanvasCameraTransform = false;
|
|
1636
1636
|
if (isWebglRenderEnabled && module.renderer && module.scene && module.camera) {
|
|
1637
|
+
const shouldFreezeWebglCanvasForZoom =
|
|
1638
|
+
shouldFreezeWebglSurfaceForZoom(module) === true;
|
|
1637
1639
|
const canReuseWebglCanvas = !!(
|
|
1640
|
+
shouldFreezeWebglCanvasForZoom !== true &&
|
|
1638
1641
|
canUseWebglCanvasTransformForCameraMotion(module) === true &&
|
|
1639
1642
|
module._lastWebglRenderedCameraState &&
|
|
1640
1643
|
module.renderer?.domElement
|
|
@@ -1652,7 +1655,7 @@
|
|
|
1652
1655
|
webglCanvasCameraTransform: usedWebglCanvasCameraTransform === true,
|
|
1653
1656
|
uaUltraEarlyCameraOnly: true
|
|
1654
1657
|
};
|
|
1655
|
-
} else if (
|
|
1658
|
+
} else if (shouldFreezeWebglCanvasForZoom === true) {
|
|
1656
1659
|
markWebglSurfaceFrozenForZoom(module, 'uaUltraEarlyCameraOnly');
|
|
1657
1660
|
} else {
|
|
1658
1661
|
module._clearWebglCanvasCameraTransform?.();
|
|
@@ -6563,7 +6566,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6563
6566
|
}
|
|
6564
6567
|
|
|
6565
6568
|
updateCursorDomElement(this);
|
|
6569
|
+
const shouldFreezeWebglCanvasForImmediateZoom =
|
|
6570
|
+
shouldFreezeWebglSurfaceForZoom(this) === true;
|
|
6566
6571
|
const canReuseWebglCanvasForImmediateMotion = !!(
|
|
6572
|
+
shouldFreezeWebglCanvasForImmediateZoom !== true &&
|
|
6567
6573
|
canUseWebglCanvasTransformForCameraMotion(this) === true &&
|
|
6568
6574
|
renderDebugFlags.enableWebglRender !== false &&
|
|
6569
6575
|
this._lastWebglRenderedCameraState &&
|
|
@@ -6572,7 +6578,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6572
6578
|
if (canReuseWebglCanvasForImmediateMotion === true) {
|
|
6573
6579
|
deferContinuousThemeForCameraMotion(this);
|
|
6574
6580
|
}
|
|
6575
|
-
if (
|
|
6581
|
+
if (shouldFreezeWebglCanvasForImmediateZoom !== true &&
|
|
6582
|
+
!canReuseWebglCanvasForImmediateMotion &&
|
|
6576
6583
|
renderDebugFlags.enableThemeAnimation !== false &&
|
|
6577
6584
|
this.currentThemeObject &&
|
|
6578
6585
|
typeof this.currentThemeObject.animate === 'function') {
|
|
@@ -6607,7 +6614,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6607
6614
|
uaVisualOnlyMotion: true
|
|
6608
6615
|
};
|
|
6609
6616
|
} else {
|
|
6610
|
-
if (
|
|
6617
|
+
if (shouldFreezeWebglCanvasForImmediateZoom === true) {
|
|
6611
6618
|
markWebglSurfaceFrozenForZoom(this, 'uaVisualOnlyMotion');
|
|
6612
6619
|
} else {
|
|
6613
6620
|
this._clearWebglCanvasCameraTransform();
|
|
@@ -6734,7 +6741,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6734
6741
|
}
|
|
6735
6742
|
|
|
6736
6743
|
updateCursorDomElement(this);
|
|
6744
|
+
const shouldFreezeWebglCanvasForStationaryZoom =
|
|
6745
|
+
shouldFreezeWebglSurfaceForZoom(this) === true;
|
|
6737
6746
|
const canReuseWebglCanvasForStationaryMotion = !!(
|
|
6747
|
+
shouldFreezeWebglCanvasForStationaryZoom !== true &&
|
|
6738
6748
|
canUseWebglCanvasTransformForCameraMotion(this) === true &&
|
|
6739
6749
|
isWebglRenderEnabled &&
|
|
6740
6750
|
this._lastWebglRenderedCameraState &&
|
|
@@ -6743,7 +6753,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6743
6753
|
if (canReuseWebglCanvasForStationaryMotion === true) {
|
|
6744
6754
|
deferContinuousThemeForCameraMotion(this);
|
|
6745
6755
|
}
|
|
6746
|
-
if (
|
|
6756
|
+
if (shouldFreezeWebglCanvasForStationaryZoom !== true &&
|
|
6757
|
+
!canReuseWebglCanvasForStationaryMotion &&
|
|
6747
6758
|
renderDebugFlags.enableThemeAnimation !== false &&
|
|
6748
6759
|
this.currentThemeObject &&
|
|
6749
6760
|
typeof this.currentThemeObject.animate === 'function') {
|
|
@@ -6778,7 +6789,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6778
6789
|
uaStationaryVisualMotion: true
|
|
6779
6790
|
};
|
|
6780
6791
|
} else {
|
|
6781
|
-
if (
|
|
6792
|
+
if (shouldFreezeWebglCanvasForStationaryZoom === true) {
|
|
6782
6793
|
markWebglSurfaceFrozenForZoom(this, 'uaStationaryVisualMotion');
|
|
6783
6794
|
} else {
|
|
6784
6795
|
this._clearWebglCanvasCameraTransform();
|
|
@@ -6920,7 +6931,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6920
6931
|
}
|
|
6921
6932
|
|
|
6922
6933
|
updateCursorDomElement(this);
|
|
6934
|
+
const shouldFreezeWebglCanvasForResidentZoom =
|
|
6935
|
+
shouldFreezeWebglSurfaceForZoom(this) === true;
|
|
6923
6936
|
const canReuseWebglCanvasForResidentMotion = !!(
|
|
6937
|
+
shouldFreezeWebglCanvasForResidentZoom !== true &&
|
|
6924
6938
|
canUseWebglCanvasTransformForCameraMotion(this) === true &&
|
|
6925
6939
|
isWebglRenderEnabled === true &&
|
|
6926
6940
|
this._lastWebglRenderedCameraState &&
|
|
@@ -6929,7 +6943,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6929
6943
|
if (canReuseWebglCanvasForResidentMotion === true) {
|
|
6930
6944
|
deferContinuousThemeForCameraMotion(this);
|
|
6931
6945
|
}
|
|
6932
|
-
if (
|
|
6946
|
+
if (shouldFreezeWebglCanvasForResidentZoom !== true &&
|
|
6947
|
+
!canReuseWebglCanvasForResidentMotion &&
|
|
6933
6948
|
renderDebugFlags.enableThemeAnimation !== false &&
|
|
6934
6949
|
this.currentThemeObject &&
|
|
6935
6950
|
typeof this.currentThemeObject.animate === 'function') {
|
|
@@ -6963,7 +6978,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6963
6978
|
uaResidentVisualOnlyMotion: true
|
|
6964
6979
|
};
|
|
6965
6980
|
} else {
|
|
6966
|
-
if (
|
|
6981
|
+
if (shouldFreezeWebglCanvasForResidentZoom === true) {
|
|
6967
6982
|
markWebglSurfaceFrozenForZoom(this, 'uaResidentVisualOnlyMotion');
|
|
6968
6983
|
} else {
|
|
6969
6984
|
this._clearWebglCanvasCameraTransform();
|
|
@@ -7152,8 +7167,11 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7152
7167
|
const shouldSampleWebglDuringCameraMotion =
|
|
7153
7168
|
renderDebugFlags.sampleWebglDuringCameraMotion === true &&
|
|
7154
7169
|
(this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0;
|
|
7170
|
+
const shouldFreezeWebglCanvasForEarlyZoom =
|
|
7171
|
+
shouldFreezeWebglSurfaceForZoom(this) === true;
|
|
7155
7172
|
let usedWebglCanvasCameraTransformEarly = false;
|
|
7156
|
-
if (shouldSampleWebglDuringCameraMotion
|
|
7173
|
+
if (shouldSampleWebglDuringCameraMotion &&
|
|
7174
|
+
shouldFreezeWebglCanvasForEarlyZoom !== true) {
|
|
7157
7175
|
updateCursorDomElement(this);
|
|
7158
7176
|
if (isWebglRenderEnabled && this.renderer && this.scene && this.camera) {
|
|
7159
7177
|
this._clearWebglCanvasCameraTransform();
|
|
@@ -7169,6 +7187,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7169
7187
|
} : null;
|
|
7170
7188
|
}
|
|
7171
7189
|
} else if (isWebglRenderEnabled &&
|
|
7190
|
+
shouldFreezeWebglCanvasForEarlyZoom === true) {
|
|
7191
|
+
markWebglSurfaceFrozenForZoom(this, 'uaEarlyCameraOnly');
|
|
7192
|
+
} else if (isWebglRenderEnabled &&
|
|
7193
|
+
shouldFreezeWebglCanvasForEarlyZoom !== true &&
|
|
7172
7194
|
canUseWebglCanvasTransformForCameraMotion(this) === true) {
|
|
7173
7195
|
usedWebglCanvasCameraTransformEarly =
|
|
7174
7196
|
this._applyWebglCanvasCameraTransform() === true;
|
|
@@ -7185,36 +7207,32 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7185
7207
|
uaEarlyCameraOnly: true
|
|
7186
7208
|
};
|
|
7187
7209
|
} else if (this.renderer && this.scene && this.camera) {
|
|
7188
|
-
|
|
7189
|
-
|
|
7190
|
-
|
|
7191
|
-
|
|
7192
|
-
this.
|
|
7193
|
-
|
|
7194
|
-
|
|
7195
|
-
|
|
7196
|
-
|
|
7197
|
-
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
} finally {
|
|
7202
|
-
if (hiddenEarlyCameraMotionThemeObject) {
|
|
7203
|
-
hiddenEarlyCameraMotionThemeObject.visible = true;
|
|
7204
|
-
}
|
|
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;
|
|
7205
7223
|
}
|
|
7206
|
-
this._recordWebglRenderedCameraState();
|
|
7207
|
-
const renderInfo = this.renderer?.info?.render || null;
|
|
7208
|
-
this._lastWebglRenderInfo = renderInfo ? {
|
|
7209
|
-
calls: Number(renderInfo.calls || 0),
|
|
7210
|
-
triangles: Number(renderInfo.triangles || 0),
|
|
7211
|
-
points: Number(renderInfo.points || 0),
|
|
7212
|
-
lines: Number(renderInfo.lines || 0),
|
|
7213
|
-
backgroundThemeHidden: hiddenEarlyCameraMotionThemeObject ? true : undefined,
|
|
7214
|
-
uaEarlyCameraOnly: true,
|
|
7215
|
-
webglCanvasCameraBootstrap: true
|
|
7216
|
-
} : null;
|
|
7217
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;
|
|
7218
7236
|
} else {
|
|
7219
7237
|
this._lastWebglRenderInfo = {
|
|
7220
7238
|
calls: 0,
|
package/wwwroot/index.html
CHANGED
|
@@ -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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-wheel-zoom-
|
|
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-
|
|
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": "
|
|
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-
|
|
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-
|
|
837
|
+
"hash": "sha256-v4rz25fB9OXXL/cR+v854AmR0oLaCK9ysKZXr/pKvaY=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|