@mindexec/cli 0.2.247 → 0.2.248
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-freeze-first-v695';
|
|
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 &&
|
|
@@ -6607,7 +6613,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6607
6613
|
uaVisualOnlyMotion: true
|
|
6608
6614
|
};
|
|
6609
6615
|
} else {
|
|
6610
|
-
if (
|
|
6616
|
+
if (shouldFreezeWebglCanvasForImmediateZoom === true) {
|
|
6611
6617
|
markWebglSurfaceFrozenForZoom(this, 'uaVisualOnlyMotion');
|
|
6612
6618
|
} else {
|
|
6613
6619
|
this._clearWebglCanvasCameraTransform();
|
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-freeze-first-v695" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-wheel-zoom-freeze-first-v695" />
|
|
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-freeze-first-v695';
|
|
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": "Zi67gVG4",
|
|
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-3CJni1dXUFwnlvRezSOK8f58AxKKAo8Ao9saMsOvUU0=",
|
|
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-NfUBTHpczaona1Kcls5Lx+NYpNeHdwUmtGXsIz+eJR0=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|