@mindexec/cli 0.2.278 → 0.2.279
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-css3d-flat-wheel-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v727';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -768,6 +768,26 @@
|
|
|
768
768
|
return true;
|
|
769
769
|
}
|
|
770
770
|
|
|
771
|
+
function deferWebglBootstrapForCameraMotion(module, mode) {
|
|
772
|
+
if (!module) {
|
|
773
|
+
return false;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
module._clearWebglCanvasCameraTransform?.();
|
|
777
|
+
module._webglCameraMotionDeferred = true;
|
|
778
|
+
const normalizedMode = String(mode || 'cameraMotion');
|
|
779
|
+
module._lastWebglRenderInfo = {
|
|
780
|
+
calls: 0,
|
|
781
|
+
triangles: 0,
|
|
782
|
+
points: 0,
|
|
783
|
+
lines: 0,
|
|
784
|
+
skipped: true,
|
|
785
|
+
webglCanvasCameraBootstrapDeferred: true,
|
|
786
|
+
[normalizedMode]: true
|
|
787
|
+
};
|
|
788
|
+
return true;
|
|
789
|
+
}
|
|
790
|
+
|
|
771
791
|
const RENDER_DEBUG_STORAGE_KEY = 'mindmap.renderDebug.flags';
|
|
772
792
|
const RENDER_DEBUG_FLAGS_SCHEMA_VERSION = 2;
|
|
773
793
|
const DEFAULT_RENDER_DEBUG_FLAGS = Object.freeze({
|
|
@@ -1783,6 +1803,8 @@
|
|
|
1783
1803
|
};
|
|
1784
1804
|
} else if (shouldFreezeWebglCanvasForZoom === true) {
|
|
1785
1805
|
markWebglSurfaceFrozenForZoom(module, 'uaUltraEarlyCameraOnly');
|
|
1806
|
+
} else if (module.isZooming === true) {
|
|
1807
|
+
deferWebglBootstrapForCameraMotion(module, 'uaUltraEarlyCameraOnly');
|
|
1786
1808
|
} else {
|
|
1787
1809
|
module._clearWebglCanvasCameraTransform?.();
|
|
1788
1810
|
module.renderer.render(module.scene, module.camera);
|
|
@@ -2007,6 +2029,8 @@
|
|
|
2007
2029
|
};
|
|
2008
2030
|
} else if (shouldFreezeWebglSurfaceForZoom(module) === true) {
|
|
2009
2031
|
markWebglSurfaceFrozenForZoom(module, 'uaUltraResidentCameraOnly');
|
|
2032
|
+
} else if (module.isZooming === true) {
|
|
2033
|
+
deferWebglBootstrapForCameraMotion(module, 'uaUltraResidentCameraOnly');
|
|
2010
2034
|
} else {
|
|
2011
2035
|
module._clearWebglCanvasCameraTransform?.();
|
|
2012
2036
|
module.renderer.render(module.scene, module.camera);
|
|
@@ -5657,18 +5681,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5657
5681
|
} else if (shouldFreezeWebglCanvasForZoom === true) {
|
|
5658
5682
|
markWebglSurfaceFrozenForZoom(this, 'uaWheelZoomDirect');
|
|
5659
5683
|
} else {
|
|
5660
|
-
this
|
|
5661
|
-
this.renderer.render(this.scene, this.camera);
|
|
5662
|
-
this._recordWebglRenderedCameraState?.();
|
|
5663
|
-
const renderInfo = this.renderer?.info?.render || null;
|
|
5664
|
-
this._lastWebglRenderInfo = renderInfo ? {
|
|
5665
|
-
calls: Number(renderInfo.calls || 0),
|
|
5666
|
-
triangles: Number(renderInfo.triangles || 0),
|
|
5667
|
-
points: Number(renderInfo.points || 0),
|
|
5668
|
-
lines: Number(renderInfo.lines || 0),
|
|
5669
|
-
uaWheelZoomDirect: true,
|
|
5670
|
-
webglCanvasCameraBootstrap: true
|
|
5671
|
-
} : null;
|
|
5684
|
+
deferWebglBootstrapForCameraMotion(this, 'uaWheelZoomDirect');
|
|
5672
5685
|
}
|
|
5673
5686
|
}
|
|
5674
5687
|
|
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-css3d-flat-wheel-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-
|
|
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" />
|
|
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-
|
|
582
|
+
const scriptVersion = '20260620-css3d-flat-wheel-v727';
|
|
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": "+of3eWGB",
|
|
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-a5GoVAXr9o8emnkh3zlfVxKpMB6zbgA7krlyr5Zu2ns=",
|
|
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-wIaDM3o/iRJKNttGSxk6ipjQXlARd1UwOCE8688cDcg=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|