@mindexec/cli 0.2.234 → 0.2.235
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-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-zoom-grid-style-freeze-v682';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -3631,6 +3631,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3631
3631
|
this._lastLocalSnapGridKey = '';
|
|
3632
3632
|
this._lastLocalSnapGridTransformKey = '';
|
|
3633
3633
|
this._lastLocalSnapGridOpacity = '';
|
|
3634
|
+
this._localSnapGridStyleDeferredForZoom = false;
|
|
3634
3635
|
this._lastSnapGridClientX = null;
|
|
3635
3636
|
this._lastSnapGridClientY = null;
|
|
3636
3637
|
this._animationIdleTimerId = null;
|
|
@@ -3751,6 +3752,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3751
3752
|
this._lastLocalSnapGridKey = '';
|
|
3752
3753
|
this._lastLocalSnapGridTransformKey = '';
|
|
3753
3754
|
this._lastLocalSnapGridOpacity = '';
|
|
3755
|
+
this._localSnapGridStyleDeferredForZoom = false;
|
|
3754
3756
|
return layer;
|
|
3755
3757
|
}
|
|
3756
3758
|
|
|
@@ -3781,6 +3783,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3781
3783
|
}
|
|
3782
3784
|
|
|
3783
3785
|
this._localSnapGridVisible = false;
|
|
3786
|
+
this._localSnapGridStyleDeferredForZoom = false;
|
|
3784
3787
|
if (layer.style.opacity !== '0') {
|
|
3785
3788
|
layer.style.opacity = '0';
|
|
3786
3789
|
}
|
|
@@ -3853,8 +3856,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3853
3856
|
Math.round(majorStepPx * 100),
|
|
3854
3857
|
Math.round(opacity * 100)
|
|
3855
3858
|
].join('|');
|
|
3859
|
+
const shouldDeferLocalGridStyleForZoom =
|
|
3860
|
+
this.isZooming === true &&
|
|
3861
|
+
!!this._lastLocalSnapGridKey;
|
|
3856
3862
|
|
|
3857
|
-
if (localGridKey !== this._lastLocalSnapGridKey
|
|
3863
|
+
if (localGridKey !== this._lastLocalSnapGridKey &&
|
|
3864
|
+
shouldDeferLocalGridStyleForZoom !== true) {
|
|
3865
|
+
this._localSnapGridStyleDeferredForZoom = false;
|
|
3858
3866
|
this._lastLocalSnapGridKey = localGridKey;
|
|
3859
3867
|
const opacityValue = opacity.toFixed(3);
|
|
3860
3868
|
this._lastLocalSnapGridOpacity = opacityValue;
|
|
@@ -3880,6 +3888,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3880
3888
|
if (layer.style.opacity !== opacityValue) {
|
|
3881
3889
|
layer.style.opacity = opacityValue;
|
|
3882
3890
|
}
|
|
3891
|
+
} else if (shouldDeferLocalGridStyleForZoom === true) {
|
|
3892
|
+
this._localSnapGridStyleDeferredForZoom = true;
|
|
3883
3893
|
}
|
|
3884
3894
|
|
|
3885
3895
|
const transformKey = `${Math.round(layerLeft * 2)}|${Math.round(layerTop * 2)}`;
|
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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-zoom-grid-style-freeze-v682" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-zoom-grid-style-freeze-v682" />
|
|
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-
|
|
582
|
+
const scriptVersion = '20260620-zoom-grid-style-freeze-v682';
|
|
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": "Bb7gNuNW",
|
|
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-f21NTYhVmQcqoeMozAXBeF/XGDlYcx+EQE8RyuJVaSE=",
|
|
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-Bf3v8t4sqye7cFE8ehvHN/FdvilUpZdu7Pg/xI5fAmc=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|