@mindexec/cli 0.2.251 → 0.2.253
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +6 -8
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +18 -18
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +4 -4
- package/wwwroot/service-worker.js +1 -1
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-ua-zoom-motion-lite-v700';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -492,10 +492,10 @@
|
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
// Static backgrounds can move as a single viewport surface. Continuous
|
|
495
|
-
// particle themes keep real animation
|
|
496
|
-
//
|
|
497
|
-
//
|
|
498
|
-
//
|
|
495
|
+
// particle themes keep real animation during non-zoom camera motion only
|
|
496
|
+
// when the user explicitly asks for 60fps animation; active wheel zoom
|
|
497
|
+
// freezes the WebGL surface separately so raw wheel cadence cannot be
|
|
498
|
+
// dominated by background rendering.
|
|
499
499
|
if (isContinuousBackgroundTheme(module) === true) {
|
|
500
500
|
return module?.useAnimation60Fps !== true;
|
|
501
501
|
}
|
|
@@ -506,7 +506,6 @@
|
|
|
506
506
|
function shouldFreezeWebglSurfaceForZoom(module) {
|
|
507
507
|
return !!(
|
|
508
508
|
module?.isZooming === true &&
|
|
509
|
-
module?.useAnimation60Fps !== true &&
|
|
510
509
|
module?._lastWebglRenderedCameraState
|
|
511
510
|
);
|
|
512
511
|
}
|
|
@@ -1413,7 +1412,6 @@
|
|
|
1413
1412
|
module.isDraggingMultipleNodes === true ||
|
|
1414
1413
|
module.isResizing === true ||
|
|
1415
1414
|
module.isWindowResizing === true ||
|
|
1416
|
-
module.useAnimation60Fps === true ||
|
|
1417
1415
|
!module.camera) {
|
|
1418
1416
|
return false;
|
|
1419
1417
|
}
|
|
@@ -3984,7 +3982,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3984
3982
|
layer.style.willChange = 'transform, opacity';
|
|
3985
3983
|
layer.style.transform = 'translate3d(0, 0, 0)';
|
|
3986
3984
|
layer.style.transition = 'opacity 90ms linear';
|
|
3987
|
-
const mask = 'radial-gradient(circle at center, rgba(0,0,0,0.
|
|
3985
|
+
const mask = 'radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 28%, rgba(0,0,0,0.52) 50%, rgba(0,0,0,0.18) 70%, rgba(0,0,0,0.04) 86%, transparent 100%)';
|
|
3988
3986
|
layer.style.maskImage = mask;
|
|
3989
3987
|
layer.style.webkitMaskImage = mask;
|
|
3990
3988
|
|
|
@@ -2937,13 +2937,23 @@
|
|
|
2937
2937
|
|
|
2938
2938
|
const dirtyPositionCount = this._dirtyPositionIds?.size || 0;
|
|
2939
2939
|
const pendingSelectionCount = this._pendingSelectionRefreshIds?.size || 0;
|
|
2940
|
-
const
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
this.
|
|
2946
|
-
|
|
2940
|
+
const hasDeferredVisualPatchWork = !!(
|
|
2941
|
+
this._imageAtlasRebuildPending === true ||
|
|
2942
|
+
(this._imageAtlasQueuedIds?.size || 0) > 0 ||
|
|
2943
|
+
(this._imageAtlasLoadingIds?.size || 0) > 0 ||
|
|
2944
|
+
(this._imageAtlasBatchReadyIds?.size || 0) > 0 ||
|
|
2945
|
+
this._imageAtlasBatchActive === true ||
|
|
2946
|
+
this._lodCleanupPending === true ||
|
|
2947
|
+
this._postLoadVisualSyncPending === true ||
|
|
2948
|
+
this._deferLineRestorePending === true ||
|
|
2949
|
+
(ENABLE_INSTANCED_TEXT_LINES === true &&
|
|
2950
|
+
this._lineDetailsPatchPending === true &&
|
|
2951
|
+
lodBand === 'MID') ||
|
|
2952
|
+
this._pendingLodVisibilityVersion >= 0
|
|
2953
|
+
);
|
|
2954
|
+
if (hasDeferredVisualPatchWork) {
|
|
2955
|
+
this._residentCameraOnlyDeferredVisualWork = true;
|
|
2956
|
+
}
|
|
2947
2957
|
|
|
2948
2958
|
return !(
|
|
2949
2959
|
this._instancesDirty === true ||
|
|
@@ -2952,17 +2962,7 @@
|
|
|
2952
2962
|
this._isNodeArrayDirty === true ||
|
|
2953
2963
|
dirtyPositionCount > 0 ||
|
|
2954
2964
|
pendingSelectionCount > 0 ||
|
|
2955
|
-
this.
|
|
2956
|
-
imageAtlasQueued > 0 ||
|
|
2957
|
-
imageAtlasLoading > 0 ||
|
|
2958
|
-
imageAtlasReady > 0 ||
|
|
2959
|
-
this._imageAtlasBatchActive === true ||
|
|
2960
|
-
this._lodCleanupPending === true ||
|
|
2961
|
-
this._postLoadVisualSyncPending === true ||
|
|
2962
|
-
this._residentRebuildPending === true ||
|
|
2963
|
-
this._deferLineRestorePending === true ||
|
|
2964
|
-
lineDetailRestorePending === true ||
|
|
2965
|
-
this._pendingLodVisibilityVersion >= 0
|
|
2965
|
+
this._residentRebuildPending === true
|
|
2966
2966
|
);
|
|
2967
2967
|
}
|
|
2968
2968
|
|
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-ua-zoom-motion-lite-v700" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-ua-zoom-motion-lite-v700" />
|
|
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-ua-zoom-motion-lite-v700';
|
|
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": "cbeRCxCY",
|
|
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-lrCuOWm7tbksmYX4rJyM8v8JMFcbXZJk9wBLV3cqkx8=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-GV55pbSXnKE79f7Fvjh995B6wrzgPmh6BUWD26/RlCA=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-AYdDosbesyW2YOj7H3N2TFgxxb+lX8Rv5EkqLcUorjY=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|