@mindexec/cli 0.2.434 → 0.2.435
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 +99 -23
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +4 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-logic-workers.js +1 -1
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +5 -5
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -127,7 +127,14 @@
|
|
|
127
127
|
const LOD_PAN_VISIBILITY_REFRESH_INTERVAL_MS = 120;
|
|
128
128
|
const CAMERA_LERP_BASE_FRAME_MS = 1000 / 60;
|
|
129
129
|
const CAMERA_KEYBOARD_PAN_LERP_60HZ = 0.38;
|
|
130
|
-
const CAMERA_MOUSE_PAN_LERP_60HZ = 0.
|
|
130
|
+
const CAMERA_MOUSE_PAN_LERP_60HZ = 0.30;
|
|
131
|
+
const CAMERA_MOUSE_PAN_SNAP_SCREEN_PX = 0.1;
|
|
132
|
+
const RECENT_PAN_INPUT_WINDOW_MS = 220;
|
|
133
|
+
const CAMERA_PAN_INPUT_WAKE_REASONS = new Set([
|
|
134
|
+
'pan-input',
|
|
135
|
+
'trackpad-pan-input',
|
|
136
|
+
'ctrl-wheel-pan-input'
|
|
137
|
+
]);
|
|
131
138
|
const NODE_ADD_FRAME_BUDGET_MS = 6;
|
|
132
139
|
const NODE_ADD_LOADING_FRAME_BUDGET_MS = 8;
|
|
133
140
|
const NODE_ADD_MIN_SLICE = 8;
|
|
@@ -388,6 +395,22 @@
|
|
|
388
395
|
return 1 - Math.pow(1 - safeBase, frameScale);
|
|
389
396
|
}
|
|
390
397
|
|
|
398
|
+
function getCameraPanSnapWorldThreshold(module) {
|
|
399
|
+
const camera = module?.camera;
|
|
400
|
+
if (!camera?.isPerspectiveCamera) {
|
|
401
|
+
return 0.001;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
const cameraZ = Math.max(1, Math.abs(Number(camera.position?.z || 1)));
|
|
405
|
+
const viewportHeight = Math.max(
|
|
406
|
+
1,
|
|
407
|
+
Number(module?._lastViewportHeight || module?._lastContainerHeight || 1080)
|
|
408
|
+
);
|
|
409
|
+
const fovDegrees = Math.max(1, Math.min(179, Number(camera.fov || 45)));
|
|
410
|
+
const viewHeight = 2 * Math.tan((fovDegrees * Math.PI) / 360) * cameraZ;
|
|
411
|
+
return Math.max(0.001, (viewHeight / viewportHeight) * CAMERA_MOUSE_PAN_SNAP_SCREEN_PX);
|
|
412
|
+
}
|
|
413
|
+
|
|
391
414
|
const _mindCanvasPerfClassState = {
|
|
392
415
|
moving: false,
|
|
393
416
|
dense: false,
|
|
@@ -970,9 +993,10 @@
|
|
|
970
993
|
const cameraZ = Number(camera.position?.z || 0);
|
|
971
994
|
const cameraX = Number(camera.position?.x || 0);
|
|
972
995
|
const cameraY = Number(camera.position?.y || 0);
|
|
996
|
+
const isPanMotionActive = module.isPanning === true || module._panSmoothingActive === true;
|
|
973
997
|
const marginPolicy = getVisibilityMarginPolicy(
|
|
974
998
|
cameraZ,
|
|
975
|
-
|
|
999
|
+
isPanMotionActive,
|
|
976
1000
|
isCtrlWheelVerticalScrolling
|
|
977
1001
|
);
|
|
978
1002
|
const cullingMarginPx = marginPolicy.cullingMarginPx;
|
|
@@ -989,7 +1013,7 @@
|
|
|
989
1013
|
let leadTopCells = 0;
|
|
990
1014
|
let leadBottomCells = 0;
|
|
991
1015
|
|
|
992
|
-
if (
|
|
1016
|
+
if (isPanMotionActive && cameraZ < 12000) {
|
|
993
1017
|
const panLeadWorld = Math.min(
|
|
994
1018
|
rawMarginWorld * (cameraZ < 4500 ? 1.35 : 1.1),
|
|
995
1019
|
cellSize * Math.max(1, maxMarginCells)
|
|
@@ -3044,6 +3068,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3044
3068
|
this.nodeObjectsById = new Map();
|
|
3045
3069
|
this.lodUpdateQueue = []; // Initialize lodUpdateQueue
|
|
3046
3070
|
this.isPanning = false;
|
|
3071
|
+
this._panSmoothingActive = false;
|
|
3072
|
+
this._resetPanLerpDeltaOnNextFrame = false;
|
|
3047
3073
|
this._currentDpr = null;
|
|
3048
3074
|
this._lastViewportWidth = 0;
|
|
3049
3075
|
this._lastViewportHeight = 0;
|
|
@@ -4105,12 +4131,24 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4105
4131
|
}
|
|
4106
4132
|
|
|
4107
4133
|
requestAnimationWake(reason = 'runtime-wake') {
|
|
4134
|
+
const wakeReason = String(reason || 'runtime-wake');
|
|
4135
|
+
const isPanInputWake = CAMERA_PAN_INPUT_WAKE_REASONS.has(wakeReason);
|
|
4136
|
+
if (isPanInputWake) {
|
|
4137
|
+
this._lastPanInputAt = typeof performance !== 'undefined' && typeof performance.now === 'function'
|
|
4138
|
+
? performance.now()
|
|
4139
|
+
: Date.now();
|
|
4140
|
+
this._panSmoothingActive = true;
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4108
4143
|
if (this._animationLoopRunning !== true || this._animationLoopExecuting === true) {
|
|
4109
4144
|
return;
|
|
4110
4145
|
}
|
|
4111
4146
|
|
|
4112
|
-
const wakeReason = String(reason || 'runtime-wake');
|
|
4113
4147
|
this._lastAnimationWakeReason = wakeReason;
|
|
4148
|
+
const resumedFromIdleCadence = !!this._animationIdleTimerId;
|
|
4149
|
+
if (resumedFromIdleCadence && isPanInputWake) {
|
|
4150
|
+
this._resetPanLerpDeltaOnNextFrame = true;
|
|
4151
|
+
}
|
|
4114
4152
|
if (this._animationIdleTimerId) {
|
|
4115
4153
|
clearTimeout(this._animationIdleTimerId);
|
|
4116
4154
|
this._animationIdleTimerId = null;
|
|
@@ -4880,7 +4918,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4880
4918
|
|
|
4881
4919
|
this._deferredDprTimer = setTimeout(() => {
|
|
4882
4920
|
this._deferredDprTimer = null;
|
|
4883
|
-
if (this.isZooming || this.isPanning || this.isDraggingNode || this.isDraggingMultipleNodes || this.isResizing || this.isWindowResizing) {
|
|
4921
|
+
if (this.isZooming || this.isPanning || this._panSmoothingActive || this.isDraggingNode || this.isDraggingMultipleNodes || this.isResizing || this.isWindowResizing) {
|
|
4884
4922
|
this._scheduleDeferredRendererPixelRatioApply(delayMs);
|
|
4885
4923
|
return;
|
|
4886
4924
|
}
|
|
@@ -5274,6 +5312,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5274
5312
|
(typeof performance !== 'undefined' && typeof performance.now === 'function')
|
|
5275
5313
|
? performance.now()
|
|
5276
5314
|
: Date.now();
|
|
5315
|
+
const isPanMotionActive = this.isPanning === true || this._panSmoothingActive === true;
|
|
5277
5316
|
|
|
5278
5317
|
let cullingMarginPx = 3000;
|
|
5279
5318
|
let maxMarginCells = 6;
|
|
@@ -5297,7 +5336,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5297
5336
|
const cameraZ = Number(camera.position?.z || 0);
|
|
5298
5337
|
const marginPolicy = getVisibilityMarginPolicy(
|
|
5299
5338
|
cameraZ,
|
|
5300
|
-
|
|
5339
|
+
isPanMotionActive,
|
|
5301
5340
|
isCtrlWheelVerticalScrolling
|
|
5302
5341
|
);
|
|
5303
5342
|
cullingMarginPx = marginPolicy.cullingMarginPx;
|
|
@@ -5340,7 +5379,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5340
5379
|
}
|
|
5341
5380
|
}
|
|
5342
5381
|
|
|
5343
|
-
if (
|
|
5382
|
+
if (isPanMotionActive && cameraZ < 12000) {
|
|
5344
5383
|
const panLeadWorld = Math.min(
|
|
5345
5384
|
rawMarginWorld * (cameraZ < 4500 ? 1.35 : 1.1),
|
|
5346
5385
|
cellSize * Math.max(1, maxMarginCells)
|
|
@@ -5398,7 +5437,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5398
5437
|
const previousVisibilityNodeCount = Number(this._lastVisibilityNodeCount || 0);
|
|
5399
5438
|
const canAttemptIncrementalFullResPan =
|
|
5400
5439
|
isFullResMode &&
|
|
5401
|
-
|
|
5440
|
+
isPanMotionActive &&
|
|
5402
5441
|
this.isZooming !== true &&
|
|
5403
5442
|
this._fullResMotionFrozen !== true &&
|
|
5404
5443
|
this.isWindowResizing !== true &&
|
|
@@ -5780,7 +5819,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5780
5819
|
const frameDelta = frameStart - (this._lastFrameTime || frameStart);
|
|
5781
5820
|
this._lastFrameTime = frameStart;
|
|
5782
5821
|
this._lastFrameDeltaMs = Number.isFinite(frameDelta) ? frameDelta : 0;
|
|
5783
|
-
|
|
5822
|
+
const shouldIgnoreIdleWakeFrameDelta = this._resetPanLerpDeltaOnNextFrame === true;
|
|
5823
|
+
if (frameDelta > 0 && Number.isFinite(frameDelta) && !shouldIgnoreIdleWakeFrameDelta) {
|
|
5784
5824
|
const previousAvgFrameTime = Number(this._avgFrameTime || frameDelta);
|
|
5785
5825
|
const nextAvgFrameTime = previousAvgFrameTime + ((frameDelta - previousAvgFrameTime) * 0.15);
|
|
5786
5826
|
this._avgFrameTime = nextAvgFrameTime;
|
|
@@ -5857,20 +5897,54 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5857
5897
|
// ?�▼??[Changed] Time-normalized camera smoothing ?�▼?? // Mouse move events can arrive at an uneven cadence even when rAF is 60fps.
|
|
5858
5898
|
// Keep zoom instant, but smooth mouse pan enough to hide input sampling jitter.
|
|
5859
5899
|
const sZoom = 1.0;
|
|
5860
|
-
const
|
|
5900
|
+
const isRecentPanInput =
|
|
5901
|
+
(frameStart - Number(this._lastPanInputAt || 0)) <= RECENT_PAN_INPUT_WINDOW_MS;
|
|
5902
|
+
const panSnapWorldThreshold = getCameraPanSnapWorldThreshold(this);
|
|
5903
|
+
const cameraTargetX = Number(this.targetX ?? this.camera.position.x);
|
|
5904
|
+
const cameraTargetY = Number(this.targetY ?? this.camera.position.y);
|
|
5905
|
+
const pendingPanDistanceBeforeLerp = Math.hypot(
|
|
5906
|
+
cameraTargetX - Number(this.camera.position.x || 0),
|
|
5907
|
+
cameraTargetY - Number(this.camera.position.y || 0)
|
|
5908
|
+
);
|
|
5909
|
+
let isPanSmoothingActive = this.isZooming !== true && (
|
|
5910
|
+
this.isPanning === true ||
|
|
5911
|
+
((isRecentPanInput || this._panSmoothingActive === true) &&
|
|
5912
|
+
pendingPanDistanceBeforeLerp > panSnapWorldThreshold)
|
|
5913
|
+
);
|
|
5914
|
+
const panLerp60hz = isPanSmoothingActive
|
|
5861
5915
|
? CAMERA_MOUSE_PAN_LERP_60HZ
|
|
5862
5916
|
: CAMERA_KEYBOARD_PAN_LERP_60HZ;
|
|
5863
|
-
const
|
|
5917
|
+
const panFrameDelta = this._resetPanLerpDeltaOnNextFrame === true
|
|
5918
|
+
? CAMERA_LERP_BASE_FRAME_MS
|
|
5919
|
+
: frameDelta;
|
|
5920
|
+
this._resetPanLerpDeltaOnNextFrame = false;
|
|
5921
|
+
const sPan = this.isZooming ? 1.0 : normalizeFrameLerp(panLerp60hz, panFrameDelta);
|
|
5864
5922
|
// ?�▲??[Changed] ?�▲??
|
|
5865
5923
|
this._tmpOldCamPos.copy(this.camera.position);
|
|
5866
|
-
this.camera.position.x += (
|
|
5867
|
-
this.camera.position.y += (
|
|
5924
|
+
this.camera.position.x += (cameraTargetX - this.camera.position.x) * sPan;
|
|
5925
|
+
this.camera.position.y += (cameraTargetY - this.camera.position.y) * sPan;
|
|
5868
5926
|
this.camera.position.z += (this.targetZ - this.camera.position.z) * sZoom;
|
|
5869
5927
|
|
|
5928
|
+
let remainingPanDistance = Math.hypot(
|
|
5929
|
+
cameraTargetX - Number(this.camera.position.x || 0),
|
|
5930
|
+
cameraTargetY - Number(this.camera.position.y || 0)
|
|
5931
|
+
);
|
|
5932
|
+
if (this.isZooming !== true &&
|
|
5933
|
+
this.isPanning !== true &&
|
|
5934
|
+
remainingPanDistance <= panSnapWorldThreshold) {
|
|
5935
|
+
this.camera.position.x = cameraTargetX;
|
|
5936
|
+
this.camera.position.y = cameraTargetY;
|
|
5937
|
+
remainingPanDistance = 0;
|
|
5938
|
+
isPanSmoothingActive = false;
|
|
5939
|
+
}
|
|
5940
|
+
this._panSmoothingActive = isPanSmoothingActive;
|
|
5941
|
+
|
|
5870
5942
|
// Check delta
|
|
5871
5943
|
const deltaMove = this.camera.position.distanceToSquared(this._tmpOldCamPos);
|
|
5872
5944
|
const didCameraPositionChange = deltaMove > 0.0001;
|
|
5873
|
-
const isCameraMoving = didCameraPositionChange ||
|
|
5945
|
+
const isCameraMoving = didCameraPositionChange ||
|
|
5946
|
+
hasFreshImmediateCameraFeedbackAtFrameStart ||
|
|
5947
|
+
(isPanSmoothingActive && remainingPanDistance > panSnapWorldThreshold);
|
|
5874
5948
|
if (isCameraMoving) {
|
|
5875
5949
|
this._viewStatePersistAfterMotion = true;
|
|
5876
5950
|
}
|
|
@@ -5941,13 +6015,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5941
6015
|
const wasViewStateMotionFrozenLastFrame = this._wasViewStateMotionFrozenLastFrame === true;
|
|
5942
6016
|
const CTRL_WHEEL_SCROLL_ACTIVE_WINDOW_MS = 140;
|
|
5943
6017
|
const CAMERA_NAVIGATION_OVERLAY_ACTIVE_WINDOW_MS = 220;
|
|
5944
|
-
const RECENT_PAN_INPUT_WINDOW_MS = 220;
|
|
5945
6018
|
const isCtrlWheelVerticalScrolling =
|
|
5946
6019
|
(frameStart - Number(this._ctrlWheelScrollInputTime || 0)) <= CTRL_WHEEL_SCROLL_ACTIVE_WINDOW_MS;
|
|
5947
6020
|
const isCameraNavigationOverlayPriority =
|
|
5948
6021
|
(frameStart - Number(this._cameraNavigationOverlayInputTime || 0)) <= CAMERA_NAVIGATION_OVERLAY_ACTIVE_WINDOW_MS;
|
|
5949
|
-
const isRecentPanInput =
|
|
5950
|
-
(frameStart - Number(this._lastPanInputAt || 0)) <= RECENT_PAN_INPUT_WINDOW_MS;
|
|
5951
6022
|
const isCameraManipulatingForOverlay =
|
|
5952
6023
|
this.isZooming === true ||
|
|
5953
6024
|
this.isPanning === true ||
|
|
@@ -5972,7 +6043,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5972
6043
|
this._wasPanningLastFrame = this.isPanning === true;
|
|
5973
6044
|
this._wasCameraMovingLastFrame = isCameraMoving === true;
|
|
5974
6045
|
this._wasResizingLastFrame = this.isResizing === true;
|
|
5975
|
-
|
|
6046
|
+
const shouldFinalizeMotionThisFrame =
|
|
6047
|
+
zoomEndedThisFrame ||
|
|
6048
|
+
cameraEndedThisFrame ||
|
|
6049
|
+
resizeEndedThisFrame ||
|
|
6050
|
+
(panEndedThisFrame && isPanSmoothingActive !== true);
|
|
6051
|
+
if (shouldFinalizeMotionThisFrame) {
|
|
5976
6052
|
this._lastMotionEndAt = frameStart;
|
|
5977
6053
|
if (this._cursorDomDeferredForMotion === true) {
|
|
5978
6054
|
updateCursorDomElement(this);
|
|
@@ -6130,7 +6206,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6130
6206
|
const idleUpdateDue = false;
|
|
6131
6207
|
const isLodPanVisibilityRefreshDue =
|
|
6132
6208
|
!isResidentMidFarLodFrame &&
|
|
6133
|
-
|
|
6209
|
+
isPanSmoothingActive &&
|
|
6134
6210
|
this.isZooming !== true &&
|
|
6135
6211
|
this.useLODRendering === true &&
|
|
6136
6212
|
this.lodRenderer?.isInLODMode === true &&
|
|
@@ -6260,7 +6336,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6260
6336
|
Number(this._avgFrameTime || 0) >= FULL_RES_MOTION_FREEZE_FRAME_MS
|
|
6261
6337
|
);
|
|
6262
6338
|
const shouldAdaptiveFreezeMotionSafeguard =
|
|
6263
|
-
(this.isZooming === true ||
|
|
6339
|
+
(this.isZooming === true || isPanSmoothingActive) &&
|
|
6264
6340
|
this.lodRenderer?.isInLODMode === true &&
|
|
6265
6341
|
isMotionHeavyScene &&
|
|
6266
6342
|
isMotionFreezeEligible;
|
|
@@ -6287,7 +6363,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6287
6363
|
this._wasViewStateMotionFrozenLastFrame = shouldFreezeFullResDuringMotion === true;
|
|
6288
6364
|
const shouldThrottleVisibilityCullingDuringPan =
|
|
6289
6365
|
isVisibilityCullingEnabled &&
|
|
6290
|
-
|
|
6366
|
+
isPanSmoothingActive &&
|
|
6291
6367
|
this.isZooming !== true &&
|
|
6292
6368
|
!shouldFreezeVisibilityDuringMotion &&
|
|
6293
6369
|
!isNodeInteracting &&
|
|
@@ -6324,7 +6400,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6324
6400
|
const shouldThrottleFullResVisibilityCullingDuringPan =
|
|
6325
6401
|
isFullResMode === true &&
|
|
6326
6402
|
isVisibilityCullingEnabled &&
|
|
6327
|
-
|
|
6403
|
+
isPanSmoothingActive &&
|
|
6328
6404
|
this.isZooming !== true &&
|
|
6329
6405
|
!shouldFreezeVisibilityDuringMotion &&
|
|
6330
6406
|
!shouldFreezeFullResDuringMotion &&
|
|
@@ -6551,7 +6627,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6551
6627
|
const isIncrementalPanVisibilityFrame =
|
|
6552
6628
|
visibilityChangedThisFrame === true &&
|
|
6553
6629
|
lastVisibilityProfile?.incrementalPanMode === true &&
|
|
6554
|
-
|
|
6630
|
+
isPanSmoothingActive &&
|
|
6555
6631
|
this.isZooming !== true &&
|
|
6556
6632
|
!isNodeInteracting &&
|
|
6557
6633
|
!hasNonCameraNavigationForcedUpdate &&
|
|
@@ -4152,6 +4152,8 @@
|
|
|
4152
4152
|
(now - Number(module?._lastMotionEndAt || 0)) < 120;
|
|
4153
4153
|
return this.isInLODMode !== true && (
|
|
4154
4154
|
module?.isPanning === true ||
|
|
4155
|
+
module?._cameraMovingThisFrame === true ||
|
|
4156
|
+
module?._panSmoothingActive === true ||
|
|
4155
4157
|
module?.isZooming === true ||
|
|
4156
4158
|
module?.isDraggingNode === true ||
|
|
4157
4159
|
module?.isDraggingMultipleNodes === true ||
|
|
@@ -7023,6 +7025,8 @@
|
|
|
7023
7025
|
|
|
7024
7026
|
_isResidentLodInteractionActive(module = this._module) {
|
|
7025
7027
|
return module?.isPanning === true ||
|
|
7028
|
+
module?._cameraMovingThisFrame === true ||
|
|
7029
|
+
module?._panSmoothingActive === true ||
|
|
7026
7030
|
module?.isZooming === true ||
|
|
7027
7031
|
module?.isDraggingNode === true ||
|
|
7028
7032
|
module?.isDraggingMultipleNodes === true ||
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
viewportH: viewportHeight
|
|
727
727
|
},
|
|
728
728
|
state: {
|
|
729
|
-
isPanning: activeModule.isPanning === true,
|
|
729
|
+
isPanning: activeModule.isPanning === true || activeModule._panSmoothingActive === true,
|
|
730
730
|
isZooming: activeModule.isZooming === true,
|
|
731
731
|
isWindowResizing: activeModule.isWindowResizing === true,
|
|
732
732
|
isResizing: activeModule.isResizing === 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 = '20260712-
|
|
582
|
+
const scriptVersion = '20260712-pan-smoothing-v926';
|
|
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": "6c1WQjRz",
|
|
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-DBjG7fXZAAblaqAtuyJcqQeX7OBMP6n+9KWSmTXr8tA=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -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-lGkrhT2O7MSfdBU0XZGkVtvvOhcr27zlOhTkhUZ3oPo=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
"hash": "sha256-
|
|
121
|
+
"hash": "sha256-KfVS6Milo4kpU7VFahI25MaUZ3sxGBj+0OdaKruxTWY=",
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
"url": "icon-512.png"
|
|
827
827
|
},
|
|
828
828
|
{
|
|
829
|
-
"hash": "sha256-
|
|
829
|
+
"hash": "sha256-DHFD2bw+0sIZ77FHp9yqyo5GQ1MJwl+JGgmP0XXZIv0=",
|
|
830
830
|
"url": "index.html"
|
|
831
831
|
},
|
|
832
832
|
{
|