@mindexec/cli 0.2.277 → 0.2.278
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-v726';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -4693,7 +4693,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4693
4693
|
return;
|
|
4694
4694
|
}
|
|
4695
4695
|
|
|
4696
|
-
|
|
4696
|
+
const wakeReason = String(reason || 'runtime-wake');
|
|
4697
|
+
if (this._shouldSuppressAnimationWakeDuringDirectWheelZoom(wakeReason) === true) {
|
|
4698
|
+
this._lastSuppressedDirectWheelZoomWakeReason = wakeReason;
|
|
4699
|
+
return;
|
|
4700
|
+
}
|
|
4701
|
+
|
|
4702
|
+
this._lastAnimationWakeReason = wakeReason;
|
|
4697
4703
|
if (this._animationIdleTimerId) {
|
|
4698
4704
|
clearTimeout(this._animationIdleTimerId);
|
|
4699
4705
|
this._animationIdleTimerId = null;
|
|
@@ -4735,6 +4741,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4735
4741
|
}
|
|
4736
4742
|
|
|
4737
4743
|
this._wheelZoomDirectSettleDueAt = 0;
|
|
4744
|
+
this._directWheelZoomPausedAnimationLoop = false;
|
|
4738
4745
|
if (this._animationLoopRunning === true) {
|
|
4739
4746
|
this.requestAnimationWake('wheel-zoom-direct-finalize');
|
|
4740
4747
|
} else {
|
|
@@ -4749,6 +4756,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4749
4756
|
|
|
4750
4757
|
clearWheelZoomDirectSettle() {
|
|
4751
4758
|
this._wheelZoomDirectSettleDueAt = 0;
|
|
4759
|
+
this._directWheelZoomPausedAnimationLoop = false;
|
|
4752
4760
|
if (!this._wheelZoomDirectSettleTimer) {
|
|
4753
4761
|
return false;
|
|
4754
4762
|
}
|
|
@@ -4803,6 +4811,21 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4803
4811
|
return paused;
|
|
4804
4812
|
}
|
|
4805
4813
|
|
|
4814
|
+
_shouldSuppressAnimationWakeDuringDirectWheelZoom(reason = 'runtime-wake') {
|
|
4815
|
+
if (this._directWheelZoomPausedAnimationLoop !== true ||
|
|
4816
|
+
this.isZooming !== true ||
|
|
4817
|
+
reason === 'wheel-zoom-direct-finalize') {
|
|
4818
|
+
return false;
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4821
|
+
const forceUpdateFrames = Math.max(0, Number(this._forceUpdateFrames || 0));
|
|
4822
|
+
const cameraNavigationForceFrames = Math.max(0, Number(this._cameraNavigationForceFrames || 0));
|
|
4823
|
+
const hasNonCameraNavigationForcedUpdate =
|
|
4824
|
+
forceUpdateFrames > 0 &&
|
|
4825
|
+
cameraNavigationForceFrames < forceUpdateFrames;
|
|
4826
|
+
return hasNonCameraNavigationForcedUpdate !== true;
|
|
4827
|
+
}
|
|
4828
|
+
|
|
4806
4829
|
getCurrentBoardId() {
|
|
4807
4830
|
return window.mindMap?.activeBoardId || _currentBoardId || null;
|
|
4808
4831
|
}
|
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-v726" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v726" />
|
|
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-v726';
|
|
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": "2Uo47qIz",
|
|
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-Bc95mzMx8jS/7dgil0lXOdYS/gd/LPgW3qBBwDwHzt8=",
|
|
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-R+BEXjNYYoIQuk482hOA0eigxNMYe0wNSmtAgRrSU8k=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|