@mindexec/cli 0.2.436 → 0.2.438
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/codex-model-catalog.js +202 -0
- package/codex-runtime.js +5 -2
- package/package.json +6 -3
- package/scripts/codex-model-catalog-smoke.mjs +150 -0
- package/server.js +35 -69
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +32 -28
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +2 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +153 -233
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-logic-workers.js +26 -5
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-normal-boundary-optimizer.js +624 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-render-plan.js +40 -23
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-visibility-worker.js +10 -5
- package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +10 -1
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.7uhld08zkc.dll → MindExecution.Plugins.Concept.cvmglrxsjb.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.y1sj1ifw0z.dll → MindExecution.Plugins.PlanMaster.8hmc6ps1ux.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.ij0uk05x1o.dll → MindExecution.Plugins.YouTube.xb9sou9ox0.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.1h72etbxec.dll → MindExecution.Shared.pqab76cjb6.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.18xe2efznc.dll → MindExecution.Web.mc24u4bzol.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +11 -11
- package/wwwroot/index.html +3 -2
- package/wwwroot/service-worker-assets.js +24 -20
- package/wwwroot/service-worker.js +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(function () {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
const BUILD_ID = '
|
|
4
|
+
const BUILD_ID = '20260713-normal-boundary-plan-v41';
|
|
5
5
|
const FRAME_SAMPLE_LIMIT = 240;
|
|
6
6
|
const INITIAL_LINE_TEXTURE_ROWS = 1024;
|
|
7
7
|
const GPU_WARM_RETRY_DELAY_MS = 120;
|
|
@@ -119,7 +119,6 @@
|
|
|
119
119
|
renderer._css3dProcessing === true ||
|
|
120
120
|
Number(renderer._nearEntryBoostFrames || 0) > 0 ||
|
|
121
121
|
renderer._fullResHandoffActive === true ||
|
|
122
|
-
module._fullResMotionFrozen === true ||
|
|
123
122
|
module._cssParentRepairNeeded === true ||
|
|
124
123
|
module._css3dVisualChangedThisFrame === true ||
|
|
125
124
|
module._css3dVisualChangedSinceLastRender === true ||
|
|
@@ -153,6 +152,17 @@
|
|
|
153
152
|
return true;
|
|
154
153
|
}
|
|
155
154
|
|
|
155
|
+
function recordStableFullRes(renderer, module, key, bandChanged, cssReadinessDrift) {
|
|
156
|
+
if (!renderer || !key || hasPendingFullResWork(renderer, module, bandChanged, cssReadinessDrift)) {
|
|
157
|
+
if (renderer) renderer._lastNearCssNoWorkKey = '';
|
|
158
|
+
return false;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
renderer._lastNearCssNoWorkKey = key;
|
|
162
|
+
renderer._lastFullResStablePlanSkipped = false;
|
|
163
|
+
return true;
|
|
164
|
+
}
|
|
165
|
+
|
|
156
166
|
function getLineModelSource(model) {
|
|
157
167
|
return model?._visibleContent ?? model?.response ?? model?.Response ??
|
|
158
168
|
model?.content ?? model?.Content ?? model?.text ?? model?.Text ?? '';
|
|
@@ -226,6 +236,8 @@
|
|
|
226
236
|
|
|
227
237
|
function isPrewarmInteractionActive(module) {
|
|
228
238
|
return module?.isPanning === true || module?.isZooming === true ||
|
|
239
|
+
module?._panSmoothingActive === true || module?._viewSyncMotionActive === true ||
|
|
240
|
+
module?._cameraMovingThisFrame === true ||
|
|
229
241
|
module?.isDraggingNode === true || module?.isDraggingMultipleNodes === true ||
|
|
230
242
|
module?.isResizing === true || module?.isWindowResizing === true;
|
|
231
243
|
}
|
|
@@ -343,6 +355,7 @@
|
|
|
343
355
|
const allowResident = options.allowResident === true;
|
|
344
356
|
if (!nodeId || !element || entry?.isCssDirty === true || entry?.currentType !== 'CSS' ||
|
|
345
357
|
cssObject.visible !== true || cssObject.userData?._residentTransitionPrepared === true ||
|
|
358
|
+
cssObject.userData?._fullResFringePrepared === true ||
|
|
346
359
|
(!allowResident && renderer?.isInLODMode === true) || (cssScene && cssObject.parent !== cssScene) ||
|
|
347
360
|
element.style?.display === 'none' || element.style?.visibility === 'hidden' || element.style?.opacity === '0' ||
|
|
348
361
|
module?._cssParentRepairNeeded === true || module?._cssTransformDirtyIds?.has?.(nodeId) === true) return false;
|
|
@@ -353,15 +366,21 @@
|
|
|
353
366
|
module?.draggedNodeId === nodeId || editingNodeId === nodeId ||
|
|
354
367
|
renderer?._getCurrentHoveredNodeId?.(module) === nodeId) return false;
|
|
355
368
|
|
|
356
|
-
const inner = element.querySelector?.('.node-container') || null;
|
|
357
|
-
const targets = inner && inner !== element ? [element, inner] : [element];
|
|
358
369
|
const isHigh = options.isHighDetail === true;
|
|
359
|
-
|
|
360
|
-
if (
|
|
361
|
-
|
|
370
|
+
if (typeof renderer?._areCss3dDetailTargetsAtLevel === 'function') {
|
|
371
|
+
if (renderer._areCss3dDetailTargetsAtLevel(entry, isHigh) !== true) return false;
|
|
372
|
+
} else {
|
|
373
|
+
const inner = element.querySelector?.('.node-container') || null;
|
|
374
|
+
const targets = inner && inner !== element ? [element, inner] : [element];
|
|
375
|
+
for (const target of targets) {
|
|
376
|
+
if (!target?.classList || target.classList.contains(isHigh ? 'lod-high' : 'lod-low') !== true ||
|
|
377
|
+
target.classList.contains(isHigh ? 'lod-low' : 'lod-high') === true) return false;
|
|
378
|
+
}
|
|
362
379
|
}
|
|
363
|
-
if (isHigh && (
|
|
364
|
-
|
|
380
|
+
if (isHigh && (typeof renderer?._isCss3dSourceSuspended === 'function'
|
|
381
|
+
? renderer._isCss3dSourceSuspended(entry) === true
|
|
382
|
+
: (element.matches?.('[data-text-overlay-source-suspended],.mind-map-text-overlay-source-suspended,.mind-map-v2-source-suspended') === true ||
|
|
383
|
+
element.querySelector?.('[data-text-overlay-source-suspended],.mind-map-text-overlay-source-suspended,.mind-map-v2-source-suspended')))) return false;
|
|
365
384
|
|
|
366
385
|
const contentType = String(entry?.model?.contentType ?? entry?.model?.ContentType ?? '').trim().toLowerCase();
|
|
367
386
|
if (contentType === 'image' || contentType === 'video') {
|
|
@@ -557,9 +576,6 @@
|
|
|
557
576
|
clearTransitionRecords(state);
|
|
558
577
|
state.active = true;
|
|
559
578
|
state.selectionKey = String(selectionKey || '');
|
|
560
|
-
for (const [nodeId, entry] of nodeObjectsById) {
|
|
561
|
-
cacheResidentCssEntry(state, entry, nodeId, getResidentCssCacheKind(entry));
|
|
562
|
-
}
|
|
563
579
|
} else if (!returningFullRes) {
|
|
564
580
|
clearTransitionRecords(state);
|
|
565
581
|
state.active = false;
|
|
@@ -752,6 +768,10 @@
|
|
|
752
768
|
const cssObject = record.cssObject;
|
|
753
769
|
const element = record.element;
|
|
754
770
|
const layoutPrepared = record.layoutPrepared === true && cssObject.userData?._residentTransitionPrepared === true;
|
|
771
|
+
if (renderer._promoteFullResCssFringePrepared?.(entry) !== true) {
|
|
772
|
+
renderer._clearFullResCssFringePrepared?.(entry);
|
|
773
|
+
}
|
|
774
|
+
if (cssObject.userData) delete cssObject.userData._fullResFringeCreated;
|
|
755
775
|
if (cssObject.userData) cssObject.userData._residentTransitionPrepared = false;
|
|
756
776
|
if (cssObject.parent !== cssScene) cssScene.add?.(cssObject);
|
|
757
777
|
if (entry.glObject) {
|
|
@@ -1052,6 +1072,7 @@
|
|
|
1052
1072
|
}
|
|
1053
1073
|
prepareIdleResidentImageInstances(state);
|
|
1054
1074
|
queueResidentGpuWarm(state);
|
|
1075
|
+
state.renderer._scheduleFullResCssFringePrewarm?.(state.nodeObjectsById, state.module);
|
|
1055
1076
|
return;
|
|
1056
1077
|
}
|
|
1057
1078
|
queueResidentLinePrewarm(state);
|
|
@@ -1228,19 +1249,10 @@
|
|
|
1228
1249
|
const key = `${Number(renderer._instancesDirtySerial || 0)}:${Number(nodeObjectsById.size || 0)}`;
|
|
1229
1250
|
let state = residentLinePrewarmStates.get(renderer);
|
|
1230
1251
|
if (!state || state.key !== key || state.nodeObjectsById !== nodeObjectsById) {
|
|
1231
|
-
const entries = Array.from(nodeObjectsById.values());
|
|
1232
|
-
const imageCandidateIds = new Set();
|
|
1233
|
-
for (let i = 0; i < entries.length; i++) {
|
|
1234
|
-
const model = entries[i]?.model || null;
|
|
1235
|
-
if (String(model?.contentType ?? model?.ContentType ?? '').toLowerCase() !== 'image') continue;
|
|
1236
|
-
const nodeId = String(model?.id || model?.Id || '');
|
|
1237
|
-
if (nodeId) imageCandidateIds.add(nodeId);
|
|
1238
|
-
}
|
|
1239
|
-
prepareImageAtlasCapacity(renderer, imageCandidateIds.size);
|
|
1240
1252
|
state = {
|
|
1241
|
-
renderer, module, nodeObjectsById, key, entries, cursor: 0, prepared: 0,
|
|
1253
|
+
renderer, module, nodeObjectsById, key, entries: null, cursor: 0, prepared: 0,
|
|
1242
1254
|
scheduled: false, retryTimer: null, complete: false, gpuScheduled: false, gpuRetryTimer: null, gpuFailureCount: 0,
|
|
1243
|
-
imagePass: 0, imageCandidateIds, imagePreparedIds: new Set(), pendingImageEntries: []
|
|
1255
|
+
imagePass: 0, imageCandidateIds: new Set(), imagePreparedIds: new Set(), pendingImageEntries: []
|
|
1244
1256
|
};
|
|
1245
1257
|
residentLinePrewarmStates.set(renderer, state);
|
|
1246
1258
|
}
|
|
@@ -1267,6 +1279,7 @@
|
|
|
1267
1279
|
if (state.complete) {
|
|
1268
1280
|
prepareIdleResidentImageInstances(state);
|
|
1269
1281
|
queueResidentGpuWarm(state);
|
|
1282
|
+
renderer._scheduleFullResCssFringePrewarm?.(nodeObjectsById, module);
|
|
1270
1283
|
}
|
|
1271
1284
|
}
|
|
1272
1285
|
|
|
@@ -1444,6 +1457,9 @@
|
|
|
1444
1457
|
residentCssRestoreCount: Number(renderer?._residentCssRestoreCount || 0),
|
|
1445
1458
|
residentCssRestoreMissCount: Number(renderer?._residentCssRestoreMissCount || 0),
|
|
1446
1459
|
residentCssLayoutWarmCount: Number(renderer?._residentCssLayoutWarmCount || 0),
|
|
1460
|
+
fullResCssFringePrewarmCount: Number(renderer?._fullResCssFringePrewarmCount || 0),
|
|
1461
|
+
fullResCssFringePrewarmCandidateCount: Number(renderer?._fullResCssFringePrewarmCandidateCount || 0),
|
|
1462
|
+
fullResCssFringeLayoutWarmCount: Number(renderer?._fullResCssFringeLayoutWarmCount || 0),
|
|
1447
1463
|
residentStableLineReuseCount: Number(renderer?._residentStableLineReuseCount || 0),
|
|
1448
1464
|
residentBoostClearCount: Number(renderer?._residentBoostClearCount || 0),
|
|
1449
1465
|
lineTextureRows: Number(renderer?.lineTextureRows || 0),
|
|
@@ -1476,6 +1492,7 @@
|
|
|
1476
1492
|
buildFullResKey,
|
|
1477
1493
|
shouldSkipStableFullRes,
|
|
1478
1494
|
commitStableFullRes,
|
|
1495
|
+
recordStableFullRes,
|
|
1479
1496
|
scheduleResidentLinePrewarm,
|
|
1480
1497
|
resolveResidentLineData,
|
|
1481
1498
|
getPreparedLineData,
|
|
@@ -690,10 +690,16 @@ function handleVisibilityQuery(message) {
|
|
|
690
690
|
}
|
|
691
691
|
});
|
|
692
692
|
|
|
693
|
-
const priorityIds = usedIncrementalPanVisibility
|
|
694
|
-
? buildIncrementalPriorityIds(nextVisibleIds, enteredIds, camX, camY)
|
|
695
|
-
: buildPriorityIds(nextVisibleIds, camX, camY);
|
|
696
693
|
const visibilityChanged = enteredIds.length > 0 || exitedIds.length > 0;
|
|
694
|
+
const canReusePriorityIds =
|
|
695
|
+
visibilityChanged !== true &&
|
|
696
|
+
Array.isArray(runtime.lastPriorityIds) &&
|
|
697
|
+
runtime.lastPriorityIds.length === nextVisibleIds.size;
|
|
698
|
+
const priorityIds = canReusePriorityIds
|
|
699
|
+
? runtime.lastPriorityIds
|
|
700
|
+
: (usedIncrementalPanVisibility
|
|
701
|
+
? buildIncrementalPriorityIds(nextVisibleIds, enteredIds, camX, camY)
|
|
702
|
+
: buildPriorityIds(nextVisibleIds, camX, camY));
|
|
697
703
|
|
|
698
704
|
runtime.lastVisibleIds = nextVisibleIds;
|
|
699
705
|
runtime.lastPriorityIds = priorityIds;
|
|
@@ -713,7 +719,6 @@ function handleVisibilityQuery(message) {
|
|
|
713
719
|
: Date.now();
|
|
714
720
|
|
|
715
721
|
const canOmitFullVisibleIds =
|
|
716
|
-
usedIncrementalPanVisibility === true &&
|
|
717
722
|
mainLastAppliedSeq > 0 &&
|
|
718
723
|
mainLastAppliedSeq === previousResultSeq &&
|
|
719
724
|
seq === previousResultSeq + 1;
|
|
@@ -726,7 +731,7 @@ function handleVisibilityQuery(message) {
|
|
|
726
731
|
visibleCount: Number(nextVisibleIds.size || 0),
|
|
727
732
|
enteredIds,
|
|
728
733
|
exitedIds,
|
|
729
|
-
priorityIds,
|
|
734
|
+
priorityIds: canReusePriorityIds ? undefined : priorityIds,
|
|
730
735
|
visibilityChanged,
|
|
731
736
|
viewportRect: runtime.lastVisibilityRect,
|
|
732
737
|
lastVisibilityNodeCount: runtime.lastNodeCount,
|
|
@@ -35,10 +35,12 @@
|
|
|
35
35
|
var cache = { camera:{ fov:0, style:'' }, objects: new WeakMap() };
|
|
36
36
|
var domElement = document.createElement('div');
|
|
37
37
|
domElement.style.overflow = 'hidden';
|
|
38
|
+
domElement.style.contain = 'layout style';
|
|
38
39
|
this.domElement = domElement;
|
|
39
40
|
var cameraElement = document.createElement('div');
|
|
40
41
|
cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d';
|
|
41
42
|
cameraElement.style.pointerEvents = 'none';
|
|
43
|
+
cameraElement.style.contain = 'layout style';
|
|
42
44
|
domElement.appendChild(cameraElement);
|
|
43
45
|
|
|
44
46
|
this.getSize = function(){ return { width:_width, height:_height }; };
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
function renderObject(object){
|
|
65
67
|
if (object.isCSS3DObject){
|
|
66
68
|
var visible=object.visible===true;
|
|
67
|
-
var layoutPrepared=object.userData?._residentTransitionPrepared===true;
|
|
69
|
+
var layoutPrepared=object.userData?._residentTransitionPrepared===true || object.userData?._fullResFringePrepared===true;
|
|
68
70
|
var display=(visible || layoutPrepared) ? '' : 'none';
|
|
69
71
|
var element=object.element;
|
|
70
72
|
var cached=cache.objects.get(object);
|
|
@@ -100,6 +102,13 @@
|
|
|
100
102
|
}
|
|
101
103
|
}
|
|
102
104
|
this.renderCamera = function(camera, matrixWorldIsCurrent){ renderCameraOnly(this, camera, matrixWorldIsCurrent); };
|
|
105
|
+
this.prepareObjectLayout = function(object){
|
|
106
|
+
if (!object || object.isCSS3DObject!==true) return false;
|
|
107
|
+
object.updateMatrixWorld(true);
|
|
108
|
+
renderObject(object);
|
|
109
|
+
object.element?.getBoundingClientRect?.();
|
|
110
|
+
return true;
|
|
111
|
+
};
|
|
103
112
|
this.render = function(scene, camera){ if (scene.autoUpdate===true) scene.updateMatrixWorld(); renderCameraOnly(this, camera, false); renderObject(scene); };
|
|
104
113
|
}
|
|
105
114
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.18xe2efznc.dll → MindExecution.Web.mc24u4bzol.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-cyYstxxu9/Yn3zgm26aHsm55DzzVHsZnB734jEONmCw=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -126,12 +126,12 @@
|
|
|
126
126
|
"MindExecution.Kernel.75hxk08tt0.dll": "MindExecution.Kernel.dll",
|
|
127
127
|
"MindExecution.Plugins.Admin.0zkmk8wahq.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
128
|
"MindExecution.Plugins.Business.vyw3769hrw.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
-
"MindExecution.Plugins.Concept.
|
|
129
|
+
"MindExecution.Plugins.Concept.cvmglrxsjb.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
130
|
"MindExecution.Plugins.Directory.jtw9q1dm9n.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
-
"MindExecution.Plugins.PlanMaster.
|
|
132
|
-
"MindExecution.Plugins.YouTube.
|
|
133
|
-
"MindExecution.Shared.
|
|
134
|
-
"MindExecution.Web.
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.8hmc6ps1ux.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.xb9sou9ox0.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.pqab76cjb6.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.mc24u4bzol.dll": "MindExecution.Web.dll",
|
|
135
135
|
"dotnet.native.566r55w3xu.js": "dotnet.native.js",
|
|
136
136
|
"dotnet.native.x6q5aixc38.wasm": "dotnet.native.wasm",
|
|
137
137
|
"dotnet.js": "dotnet.js",
|
|
@@ -279,15 +279,15 @@
|
|
|
279
279
|
"MindExecution.Core.808jj176e1.dll": "sha256-uMmP6rEgsbuwnsZ6Cnxrpmzio4usBtoJERfkOvz25iY=",
|
|
280
280
|
"MindExecution.Kernel.75hxk08tt0.dll": "sha256-9db04cSFp4z4iblswVb0UWgpjeluVqZUa7g27Oj3p40=",
|
|
281
281
|
"MindExecution.Plugins.Business.vyw3769hrw.dll": "sha256-WSc1w7WNOhnmzD3DcIgg4PCYzHeeU5rc7KK7eLgsu+M=",
|
|
282
|
-
"MindExecution.Plugins.Concept.
|
|
283
|
-
"MindExecution.Plugins.PlanMaster.
|
|
284
|
-
"MindExecution.Shared.
|
|
285
|
-
"MindExecution.Web.
|
|
282
|
+
"MindExecution.Plugins.Concept.cvmglrxsjb.dll": "sha256-yGhEvwMzCTsmRB6D80lOSfOUWCegs7b/GRvXEdIss5s=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.8hmc6ps1ux.dll": "sha256-NDlttv/8WOvjy9hud+07v5ul3ZJhf2n/cf2CgMfhBnA=",
|
|
284
|
+
"MindExecution.Shared.pqab76cjb6.dll": "sha256-3zUucQiJHN3pl4KBqsG0D0j054ojYss5D69/xCNTngY=",
|
|
285
|
+
"MindExecution.Web.mc24u4bzol.dll": "sha256-5sJydtlQZKVkPUzMIYPO5q2iWWpstxPNVn6Kyk3fBrk="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
288
|
"MindExecution.Plugins.Admin.0zkmk8wahq.dll": "sha256-VLiwzLIr+tjKr6+yQfhMVQHq2Yx26QenAkC092+fEdw=",
|
|
289
289
|
"MindExecution.Plugins.Directory.jtw9q1dm9n.dll": "sha256-Z1x+H7sTj3w9XjWxfqGsd3Jv+qlzwQxAur6pJIP4l20=",
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
290
|
+
"MindExecution.Plugins.YouTube.xb9sou9ox0.dll": "sha256-Pf4IWNwd62loUPGvRnJ8ZgJ1X/h87tNDeBwS8ajlwyk="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '
|
|
582
|
+
const scriptVersion = '20260713-cursor-codex-catalog-v933';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -602,6 +602,7 @@
|
|
|
602
602
|
'mind-map-interactions.js',
|
|
603
603
|
'mind-map-dnd.js',
|
|
604
604
|
'mind-map-render-plan.js',
|
|
605
|
+
'mind-map-normal-boundary-optimizer.js',
|
|
605
606
|
'mind-map-lod-renderer.js',
|
|
606
607
|
'mind-map-text-lod-system.js', // ??Text LOD ??좎럩???(??좎럩????좎럩?ゅ뜝???좎럩彛?
|
|
607
608
|
'mind-map-core.js',
|
|
@@ -655,7 +656,7 @@
|
|
|
655
656
|
);
|
|
656
657
|
|
|
657
658
|
window.MindCanvasBuildInfo?.setRuntime?.('scriptVersion', scriptVersion);
|
|
658
|
-
window.MindCanvasBuildInfo?.validateRequiredParts?.(['devGuards', 'renderPlan', 'core', 'lodRenderer']);
|
|
659
|
+
window.MindCanvasBuildInfo?.validateRequiredParts?.(['devGuards', 'renderPlan', 'normalBoundaryOptimizer', 'core', 'lodRenderer']);
|
|
659
660
|
|
|
660
661
|
console.log('[Script Loader] Critical scripts loaded, starting Blazor...');
|
|
661
662
|
window.mindExecutionStartupTiming?.mark('critical-scripts-loaded', {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "skSGAAoe",
|
|
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-bBRq3Vtbchai8bpYEoThsNN2ONQiy3ktOmgeKe0U6lI=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-KLJWPlXi2Zh9qNcSZCFtU6xgzc79UIPz2MPCVizCL28=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -114,11 +114,11 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-NejkiYDvjK3zH9yJHAa212PHYv2qXxdTHnV3J9b06g0=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
"hash": "sha256-
|
|
121
|
+
"hash": "sha256-6rVMf3gmpiBdiiGtus8cws2RA7Ppcf82+XZ8a5QRF2s=",
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
"hash": "sha256-cs9eNyvytHvaLxJ8oVNVBxgUGjhbXls0l4xo2tlfE0c=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
|
+
{
|
|
141
|
+
"hash": "sha256-HfgcClrZn95e2cG9JgJec9pGJF4sglRB1/8bc9xyqOk=",
|
|
142
|
+
"url": "_content/MindExecution.Shared/js/mind-map-normal-boundary-optimizer.js"
|
|
143
|
+
},
|
|
140
144
|
{
|
|
141
145
|
"hash": "sha256-3tRw4wn9UR7qbqh0+dpuQJYrPpQQZU4tRpjHEjpkjCc=",
|
|
142
146
|
"url": "_content/MindExecution.Shared/js/mind-map-object-manager.js"
|
|
@@ -150,7 +154,7 @@
|
|
|
150
154
|
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
|
-
"hash": "sha256-
|
|
157
|
+
"hash": "sha256-cLpfBu1xGaz6r3erSnxPGrqPlfldqcMbV/taYkFtnlE=",
|
|
154
158
|
"url": "_content/MindExecution.Shared/js/mind-map-render-plan.js"
|
|
155
159
|
},
|
|
156
160
|
{
|
|
@@ -166,7 +170,7 @@
|
|
|
166
170
|
"url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup"
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
|
-
"hash": "sha256-
|
|
173
|
+
"hash": "sha256-MuqzAuC7Wyo7GxkOtpclozmNB+Pu9wC4txMN4I+jM84=",
|
|
170
174
|
"url": "_content/MindExecution.Shared/js/mind-map-visibility-worker.js"
|
|
171
175
|
},
|
|
172
176
|
{
|
|
@@ -182,7 +186,7 @@
|
|
|
182
186
|
"url": "_content/MindExecution.Shared/js/plan-master.js"
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
|
-
"hash": "sha256-
|
|
189
|
+
"hash": "sha256-hxZf4WN0MA10CQ/d4ovA2C5HM67HyjQ5fne/TcIFG/U=",
|
|
186
190
|
"url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
|
|
187
191
|
},
|
|
188
192
|
{
|
|
@@ -426,28 +430,28 @@
|
|
|
426
430
|
"url": "_framework/MindExecution.Plugins.Business.vyw3769hrw.dll"
|
|
427
431
|
},
|
|
428
432
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
433
|
+
"hash": "sha256-yGhEvwMzCTsmRB6D80lOSfOUWCegs7b/GRvXEdIss5s=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Concept.cvmglrxsjb.dll"
|
|
431
435
|
},
|
|
432
436
|
{
|
|
433
437
|
"hash": "sha256-Z1x+H7sTj3w9XjWxfqGsd3Jv+qlzwQxAur6pJIP4l20=",
|
|
434
438
|
"url": "_framework/MindExecution.Plugins.Directory.jtw9q1dm9n.dll"
|
|
435
439
|
},
|
|
436
440
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
441
|
+
"hash": "sha256-NDlttv/8WOvjy9hud+07v5ul3ZJhf2n/cf2CgMfhBnA=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.8hmc6ps1ux.dll"
|
|
439
443
|
},
|
|
440
444
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
445
|
+
"hash": "sha256-Pf4IWNwd62loUPGvRnJ8ZgJ1X/h87tNDeBwS8ajlwyk=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.YouTube.xb9sou9ox0.dll"
|
|
443
447
|
},
|
|
444
448
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
449
|
+
"hash": "sha256-3zUucQiJHN3pl4KBqsG0D0j054ojYss5D69/xCNTngY=",
|
|
450
|
+
"url": "_framework/MindExecution.Shared.pqab76cjb6.dll"
|
|
447
451
|
},
|
|
448
452
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
453
|
+
"hash": "sha256-5sJydtlQZKVkPUzMIYPO5q2iWWpstxPNVn6Kyk3fBrk=",
|
|
454
|
+
"url": "_framework/MindExecution.Web.mc24u4bzol.dll"
|
|
451
455
|
},
|
|
452
456
|
{
|
|
453
457
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -766,7 +770,7 @@
|
|
|
766
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
767
771
|
},
|
|
768
772
|
{
|
|
769
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-BhRb0qMTAHsNxt77FQUjETyjbzdhjkbZN5P0GDBi7vU=",
|
|
770
774
|
"url": "_framework/blazor.boot.json"
|
|
771
775
|
},
|
|
772
776
|
{
|
|
@@ -826,7 +830,7 @@
|
|
|
826
830
|
"url": "icon-512.png"
|
|
827
831
|
},
|
|
828
832
|
{
|
|
829
|
-
"hash": "sha256-
|
|
833
|
+
"hash": "sha256-k4rHBfZbVwgAQvynTUrp2syVhaEZk19TtPsXKDxzfVI=",
|
|
830
834
|
"url": "index.html"
|
|
831
835
|
},
|
|
832
836
|
{
|