@mindexec/cli 0.2.252 → 0.2.254
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 +9 -4
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +18 -18
- package/wwwroot/index.html +15 -15
- 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-v701';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -1412,7 +1412,6 @@
|
|
|
1412
1412
|
module.isDraggingMultipleNodes === true ||
|
|
1413
1413
|
module.isResizing === true ||
|
|
1414
1414
|
module.isWindowResizing === true ||
|
|
1415
|
-
module.useAnimation60Fps === true ||
|
|
1416
1415
|
!module.camera) {
|
|
1417
1416
|
return false;
|
|
1418
1417
|
}
|
|
@@ -7114,8 +7113,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7114
7113
|
isCameraNavigationOnlyInteractiveFrame === true &&
|
|
7115
7114
|
this._forceThemeAnimationFrame !== true &&
|
|
7116
7115
|
canUseWebglCanvasTransformForCameraMotion(this) === true;
|
|
7116
|
+
const shouldFreezeContinuousThemeForWheelZoom =
|
|
7117
|
+
this.isZooming === true &&
|
|
7118
|
+
isContinuousTheme === true;
|
|
7117
7119
|
const allowContinuousThemeAnimationThisFrame =
|
|
7118
|
-
|
|
7120
|
+
shouldFreezeContinuousThemeForWheelZoom === true
|
|
7121
|
+
? false
|
|
7122
|
+
: shouldPauseThemeForCameraNavigation === true
|
|
7119
7123
|
? false
|
|
7120
7124
|
: (isContinuousTheme !== true ||
|
|
7121
7125
|
(isContinuousTheme === true && isCameraNavigationOnlyInteractiveFrame === true) ||
|
|
@@ -7126,7 +7130,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7126
7130
|
shouldUseAnimation60Fps === true ||
|
|
7127
7131
|
shouldUseAnimationLowFpsFrame === true ||
|
|
7128
7132
|
this._forceThemeAnimationFrame === true);
|
|
7129
|
-
if (
|
|
7133
|
+
if (shouldFreezeContinuousThemeForWheelZoom === true ||
|
|
7134
|
+
shouldPauseThemeForCameraNavigation === true) {
|
|
7130
7135
|
deferContinuousThemeForCameraMotion(this);
|
|
7131
7136
|
}
|
|
7132
7137
|
const isMenuOverlayUiEnabled = !isBoardLoading && renderDebugFlags.enableMenuOverlayUi !== false;
|
|
@@ -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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
|
|
4
4
|
<head>
|
|
@@ -7,11 +7,11 @@
|
|
|
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-
|
|
12
|
-
<!--
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-ua-zoom-motion-lite-v701" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-ua-zoom-motion-lite-v701" />
|
|
12
|
+
<!-- ?�▼??Font Awesome (local) ?�▼??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
|
-
<!--
|
|
14
|
+
<!-- ?�▲??-->
|
|
15
15
|
<style>
|
|
16
16
|
#app {
|
|
17
17
|
min-height: 100vh;
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
function adjustTextareaHeight(element) {
|
|
181
181
|
if (!element) return;
|
|
182
182
|
|
|
183
|
-
//
|
|
183
|
+
// ?�▼??[Change] Add jitter-prevention logic ?�▼??
|
|
184
184
|
// Compare the previous text length. When content grows, skip the 'auto' reset.
|
|
185
185
|
// Only reset to 'auto' when shrinking (during deletion).
|
|
186
186
|
const currentLength = element.value.length;
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
element.dataset.prevLength = currentLength; // store current length
|
|
194
|
-
//
|
|
194
|
+
// ?�▲??[Change] ?�▲??
|
|
195
195
|
|
|
196
196
|
const computedStyles = window.getComputedStyle(element);
|
|
197
197
|
const lineHeight = parseFloat(computedStyles.lineHeight || '24') || 24;
|
|
@@ -284,11 +284,11 @@
|
|
|
284
284
|
// Prevent default page-level DnD behavior
|
|
285
285
|
document.addEventListener('dragover', (e) => {
|
|
286
286
|
e.preventDefault();
|
|
287
|
-
//
|
|
287
|
+
// ?�▼??[Change] Remove/avoid stopPropagation (do not disrupt event flow) ?�▼??
|
|
288
288
|
// e.stopPropagation();
|
|
289
|
-
//
|
|
289
|
+
// ?�▲??[Change] ?�▲??
|
|
290
290
|
|
|
291
|
-
//
|
|
291
|
+
// ?�▼??[Change] Default is 'none', but only apply when not handled by children ?�▼??
|
|
292
292
|
// (If MindMapDnD handles it, this code won't run or will be ignored)
|
|
293
293
|
// e.dataTransfer.dropEffect = 'none';
|
|
294
294
|
}, false);
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
window.__matchesMarketingToolHost(host, location.host || '')
|
|
429
429
|
);
|
|
430
430
|
</script>
|
|
431
|
-
<!--
|
|
431
|
+
<!-- ?�▼??[Upgrade] Three.js r168 via ESM ?�▼??-->
|
|
432
432
|
<script type="importmap">
|
|
433
433
|
{
|
|
434
434
|
"imports": {
|
|
@@ -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-v701';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
'background-themes.js',
|
|
591
591
|
'mind-map-logic-workers.js',
|
|
592
592
|
// Troika removed
|
|
593
|
-
'texture-worker-manager.js', // ??Web Worker
|
|
593
|
+
'texture-worker-manager.js', // ??Web Worker ?�스�??�성
|
|
594
594
|
'mind-map-texture-factory.js',
|
|
595
595
|
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
596
|
'mind-map-css3d-manager.js',
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
'mind-map-interactions.js',
|
|
604
604
|
'mind-map-dnd.js',
|
|
605
605
|
'mind-map-lod-renderer.js',
|
|
606
|
-
'mind-map-text-lod-system.js', // ??Text LOD
|
|
606
|
+
'mind-map-text-lod-system.js', // ??Text LOD ?�스??(?�적 ?�스�??�질)
|
|
607
607
|
'mind-map-core.js',
|
|
608
608
|
'mindmap-toolbar.js',
|
|
609
609
|
'token-manager.js',
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
window.showBlazorBootError('The page could not finish loading. Reload and try again.');
|
|
723
723
|
});
|
|
724
724
|
</script>
|
|
725
|
-
<!--
|
|
725
|
+
<!-- ?�▲??[Upgrade] ?�▲??-->
|
|
726
726
|
</body>
|
|
727
727
|
|
|
728
728
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "WjyXhuL7",
|
|
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-vcVgmHzzRkIap4anSwYElKSeEdcgJbZRno+CJzIa36Y=",
|
|
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-oriMi66AlZgCxhFoBhFlzM3ZRTvR9oi0M0MbiOcR+pE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|