@mindexec/cli 0.2.469 → 0.2.471
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/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +30 -176
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +65 -12
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-image-policy.js +15 -4
- package/wwwroot/_framework/{MindExecution.Core.rmpf5us73b.dll → MindExecution.Core.94m6ejtca1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.jebho1txjn.dll → MindExecution.Kernel.61ttjshkyz.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.vb2b525l5w.dll → MindExecution.Plugins.Admin.4b5expbfln.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.g9svpf2ngw.dll → MindExecution.Plugins.Business.ohwctqyt61.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.3g19y748j3.dll → MindExecution.Plugins.Concept.f8q8szf0d6.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.cb2k9u5952.dll → MindExecution.Plugins.Directory.zh2sduii1b.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.vsojs80h20.dll → MindExecution.Plugins.PlanMaster.1cwldgvpvn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.luk1dwf932.dll → MindExecution.Plugins.YouTube.5s3kg6vrqh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.cjavadsxis.dll → MindExecution.Shared.hnzia43ril.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.ratalb86xy.dll → MindExecution.Web.cnxtclcio0.dll} +0 -0
- package/wwwroot/_framework/{System.Private.CoreLib.g6ztz7cmo2.dll → System.Private.CoreLib.wflwsce1yq.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +23 -23
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +28 -28
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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 = '20260819-grid-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260819-grid-single-css-representation-v869';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -3269,10 +3269,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3269
3269
|
this._lastLocalSnapGridWorldPeriod = this._lastLocalSnapGridWorldStep * 10;
|
|
3270
3270
|
this._localSnapGridRasterPeriodPx = LOCAL_SNAP_GRID_DEFAULT_MAJOR_STEP_PX;
|
|
3271
3271
|
this._lastLocalSnapGridBackgroundSizeKey = '';
|
|
3272
|
-
this._localSnapGridTileCanvas = null;
|
|
3273
3272
|
this._localSnapGridPointerRevision = 0;
|
|
3274
3273
|
this._lastLocalSnapGridPositionRevision = -1;
|
|
3275
|
-
this._localSnapGridStyleDeferredForZoom = false;
|
|
3276
3274
|
this._localSnapGridPointerWakeDeferredForZoom = false;
|
|
3277
3275
|
this._lastSnapGridClientX = null;
|
|
3278
3276
|
this._lastSnapGridClientY = null;
|
|
@@ -3341,14 +3339,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3341
3339
|
const roundedY = Math.round(nextY * 2) / 2;
|
|
3342
3340
|
if (Math.abs(Number(this._lastSnapGridClientX ?? Number.NaN) - roundedX) < 0.001 &&
|
|
3343
3341
|
Math.abs(Number(this._lastSnapGridClientY ?? Number.NaN) - roundedY) < 0.001) {
|
|
3344
|
-
if (this.isZooming === true) {
|
|
3345
|
-
this._localSnapGridStyleDeferredForZoom = true;
|
|
3346
|
-
}
|
|
3347
3342
|
return false;
|
|
3348
3343
|
}
|
|
3349
|
-
if (this.isZooming === true) {
|
|
3350
|
-
this._localSnapGridStyleDeferredForZoom = true;
|
|
3351
|
-
}
|
|
3352
3344
|
|
|
3353
3345
|
const previousX = this._lastSnapGridClientX;
|
|
3354
3346
|
const previousY = this._lastSnapGridClientY;
|
|
@@ -3525,7 +3517,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3525
3517
|
this._lastLocalSnapGridWorldPeriod = this._lastLocalSnapGridWorldStep * 10;
|
|
3526
3518
|
this._localSnapGridRasterPeriodPx = LOCAL_SNAP_GRID_DEFAULT_MAJOR_STEP_PX;
|
|
3527
3519
|
this._lastLocalSnapGridBackgroundSizeKey = '';
|
|
3528
|
-
this._localSnapGridStyleDeferredForZoom = false;
|
|
3529
3520
|
return layer;
|
|
3530
3521
|
}
|
|
3531
3522
|
|
|
@@ -3712,85 +3703,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3712
3703
|
return themeName === 'SpatialGrid2D' ? 'dot' : 'line';
|
|
3713
3704
|
}
|
|
3714
3705
|
|
|
3715
|
-
_drawLocalSnapGridTile(canvas, styleKind, smallStepPx, majorStepPx) {
|
|
3716
|
-
if (!canvas || typeof canvas.getContext !== 'function') {
|
|
3717
|
-
return false;
|
|
3718
|
-
}
|
|
3719
|
-
|
|
3720
|
-
const ctx = canvas.getContext('2d', { alpha: true });
|
|
3721
|
-
if (!ctx) {
|
|
3722
|
-
return false;
|
|
3723
|
-
}
|
|
3724
|
-
|
|
3725
|
-
const smallStep = Math.max(LOCAL_SNAP_GRID_RASTER_MIN_STEP_PX, Number(smallStepPx) || LOCAL_SNAP_GRID_DEFAULT_STEP_PX);
|
|
3726
|
-
const majorStep = Math.max(
|
|
3727
|
-
smallStep,
|
|
3728
|
-
Math.min(
|
|
3729
|
-
LOCAL_SNAP_GRID_RASTER_MAX_PERIOD_PX,
|
|
3730
|
-
Number(majorStepPx) || LOCAL_SNAP_GRID_DEFAULT_MAJOR_STEP_PX
|
|
3731
|
-
)
|
|
3732
|
-
);
|
|
3733
|
-
const tileSize = Math.max(1, majorStep);
|
|
3734
|
-
const minorDetailAlpha = this._resolveLocalSnapGridMinorDetailAlpha(smallStep);
|
|
3735
|
-
const viewportDpr = Math.max(1, Math.min(3, Number(this._lastViewportDpr || window.devicePixelRatio || 1)));
|
|
3736
|
-
const bitmapSize = Math.max(1, Math.ceil(tileSize * viewportDpr));
|
|
3737
|
-
if (canvas.width !== bitmapSize) {
|
|
3738
|
-
canvas.width = bitmapSize;
|
|
3739
|
-
}
|
|
3740
|
-
if (canvas.height !== bitmapSize) {
|
|
3741
|
-
canvas.height = bitmapSize;
|
|
3742
|
-
}
|
|
3743
|
-
const rasterScale = bitmapSize / tileSize;
|
|
3744
|
-
ctx.setTransform(rasterScale, 0, 0, rasterScale, 0, 0);
|
|
3745
|
-
ctx.clearRect(0, 0, tileSize, tileSize);
|
|
3746
|
-
|
|
3747
|
-
if (styleKind === 'dot') {
|
|
3748
|
-
if (minorDetailAlpha > 0.001) {
|
|
3749
|
-
ctx.fillStyle = `rgba(58, 69, 88, ${(0.68 * minorDetailAlpha).toFixed(3)})`;
|
|
3750
|
-
const dotRadius = 1.2;
|
|
3751
|
-
for (let y = 0; y < tileSize; y += smallStep) {
|
|
3752
|
-
for (let x = 0; x < tileSize; x += smallStep) {
|
|
3753
|
-
ctx.beginPath();
|
|
3754
|
-
ctx.arc(x, y, dotRadius, 0, Math.PI * 2);
|
|
3755
|
-
ctx.fill();
|
|
3756
|
-
}
|
|
3757
|
-
}
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
|
-
ctx.fillStyle = 'rgba(15, 23, 42, 0.82)';
|
|
3761
|
-
ctx.beginPath();
|
|
3762
|
-
ctx.arc(0, 0, 1.9, 0, Math.PI * 2);
|
|
3763
|
-
ctx.fill();
|
|
3764
|
-
} else {
|
|
3765
|
-
const drawLines = (step, color, width) => {
|
|
3766
|
-
ctx.strokeStyle = color;
|
|
3767
|
-
ctx.lineWidth = width;
|
|
3768
|
-
ctx.beginPath();
|
|
3769
|
-
for (let x = 0; x < tileSize; x += step) {
|
|
3770
|
-
const pixelX = Math.round(x) + 0.5;
|
|
3771
|
-
ctx.moveTo(pixelX, 0);
|
|
3772
|
-
ctx.lineTo(pixelX, tileSize);
|
|
3773
|
-
}
|
|
3774
|
-
for (let y = 0; y < tileSize; y += step) {
|
|
3775
|
-
const pixelY = Math.round(y) + 0.5;
|
|
3776
|
-
ctx.moveTo(0, pixelY);
|
|
3777
|
-
ctx.lineTo(tileSize, pixelY);
|
|
3778
|
-
}
|
|
3779
|
-
ctx.stroke();
|
|
3780
|
-
};
|
|
3781
|
-
|
|
3782
|
-
if (minorDetailAlpha > 0.001) {
|
|
3783
|
-
drawLines(
|
|
3784
|
-
smallStep,
|
|
3785
|
-
`rgba(51, 65, 85, ${(0.24 * minorDetailAlpha).toFixed(3)})`,
|
|
3786
|
-
1
|
|
3787
|
-
);
|
|
3788
|
-
}
|
|
3789
|
-
drawLines(majorStep, 'rgba(15, 23, 42, 0.42)', 1);
|
|
3790
|
-
}
|
|
3791
|
-
return tileSize;
|
|
3792
|
-
}
|
|
3793
|
-
|
|
3794
3706
|
_applyLocalSnapGridStyle(
|
|
3795
3707
|
layer,
|
|
3796
3708
|
styleKind,
|
|
@@ -3819,6 +3731,14 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3819
3731
|
const safeOpacity = Number.isFinite(parsedOpacity)
|
|
3820
3732
|
? Math.max(0, Math.min(0.68, parsedOpacity))
|
|
3821
3733
|
: LOCAL_SNAP_GRID_DEFAULT_OPACITY;
|
|
3734
|
+
if (safeStyleKind === 'line') {
|
|
3735
|
+
return this._applyLocalSnapGridLineStyle(
|
|
3736
|
+
layer,
|
|
3737
|
+
safeSmallStep,
|
|
3738
|
+
safeMajorStep,
|
|
3739
|
+
safeOpacity
|
|
3740
|
+
);
|
|
3741
|
+
}
|
|
3822
3742
|
const localGridKey = [
|
|
3823
3743
|
keyPrefix,
|
|
3824
3744
|
safeStyleKind,
|
|
@@ -3830,10 +3750,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3830
3750
|
const majorStepValue = safeMajorStep.toFixed(3);
|
|
3831
3751
|
const minorDetailAlpha = this._resolveLocalSnapGridMinorDetailAlpha(safeSmallStep);
|
|
3832
3752
|
const showMinorDots = minorDetailAlpha > 0.001;
|
|
3833
|
-
const backgroundSizeValue =
|
|
3834
|
-
?
|
|
3835
|
-
? `${majorStepValue}px ${majorStepValue}px, ${smallStepValue}px ${smallStepValue}px`
|
|
3836
|
-
: `${majorStepValue}px ${majorStepValue}px`)
|
|
3753
|
+
const backgroundSizeValue = showMinorDots
|
|
3754
|
+
? `${majorStepValue}px ${majorStepValue}px, ${smallStepValue}px ${smallStepValue}px`
|
|
3837
3755
|
: `${majorStepValue}px ${majorStepValue}px`;
|
|
3838
3756
|
const backgroundSizeKey = backgroundSizeValue;
|
|
3839
3757
|
|
|
@@ -3849,46 +3767,22 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3849
3767
|
|
|
3850
3768
|
const opacityValue = safeOpacity.toFixed(3);
|
|
3851
3769
|
this._lastLocalSnapGridOpacity = opacityValue;
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
const backgroundImage = showMinorDots ? `${majorDot}, ${minorDot}` : majorDot;
|
|
3857
|
-
this._lastLocalSnapGridKey = localGridKey;
|
|
3858
|
-
this._lastLocalSnapGridPatternPeriodPx = safeMajorStep;
|
|
3859
|
-
this._localSnapGridRasterPeriodPx = safeMajorStep;
|
|
3860
|
-
this._lastLocalSnapGridTransformKey = '';
|
|
3861
|
-
if (layer.style.backgroundImage !== backgroundImage) layer.style.backgroundImage = backgroundImage;
|
|
3862
|
-
this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeKey;
|
|
3863
|
-
if (layer.style.backgroundSize !== backgroundSizeValue) layer.style.backgroundSize = backgroundSizeValue;
|
|
3864
|
-
if (layer.style.opacity !== opacityValue) layer.style.opacity = opacityValue;
|
|
3865
|
-
return true;
|
|
3866
|
-
}
|
|
3867
|
-
const tileCanvas = this._localSnapGridTileCanvas || document.createElement('canvas');
|
|
3868
|
-
this._localSnapGridTileCanvas = tileCanvas;
|
|
3869
|
-
const tileSize = this._drawLocalSnapGridTile(
|
|
3870
|
-
tileCanvas,
|
|
3871
|
-
safeStyleKind,
|
|
3872
|
-
safeSmallStep,
|
|
3873
|
-
safeMajorStep
|
|
3874
|
-
);
|
|
3875
|
-
if (!Number.isFinite(tileSize) || tileSize <= 0) {
|
|
3876
|
-
return false;
|
|
3877
|
-
}
|
|
3770
|
+
const majorDot = 'radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.82) 0 1.9px, transparent 2px)';
|
|
3771
|
+
const minorDotAlphaValue = (0.68 * minorDetailAlpha).toFixed(3);
|
|
3772
|
+
const minorDot = `radial-gradient(circle at 0 0, rgba(58, 69, 88, ${minorDotAlphaValue}) 0 1.2px, transparent 1.3px)`;
|
|
3773
|
+
const backgroundImage = showMinorDots ? `${majorDot}, ${minorDot}` : majorDot;
|
|
3878
3774
|
this._lastLocalSnapGridKey = localGridKey;
|
|
3879
3775
|
this._lastLocalSnapGridPatternPeriodPx = safeMajorStep;
|
|
3880
3776
|
this._localSnapGridRasterPeriodPx = safeMajorStep;
|
|
3881
3777
|
this._lastLocalSnapGridTransformKey = '';
|
|
3882
|
-
layer.style.backgroundImage =
|
|
3778
|
+
if (layer.style.backgroundImage !== backgroundImage) layer.style.backgroundImage = backgroundImage;
|
|
3883
3779
|
this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeKey;
|
|
3884
|
-
layer.style.backgroundSize = backgroundSizeValue;
|
|
3885
|
-
if (layer.style.opacity !== opacityValue)
|
|
3886
|
-
layer.style.opacity = opacityValue;
|
|
3887
|
-
}
|
|
3780
|
+
if (layer.style.backgroundSize !== backgroundSizeValue) layer.style.backgroundSize = backgroundSizeValue;
|
|
3781
|
+
if (layer.style.opacity !== opacityValue) layer.style.opacity = opacityValue;
|
|
3888
3782
|
return true;
|
|
3889
3783
|
}
|
|
3890
3784
|
|
|
3891
|
-
|
|
3785
|
+
_applyLocalSnapGridLineStyle(layer, smallStepPx, majorStepPx, opacity) {
|
|
3892
3786
|
if (!layer) return false;
|
|
3893
3787
|
|
|
3894
3788
|
const safeSmallStep = Math.max(
|
|
@@ -3919,7 +3813,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3919
3813
|
'linear-gradient(to right, rgba(15, 23, 42, 0.42) 0 1px, transparent 1px)',
|
|
3920
3814
|
'linear-gradient(to bottom, rgba(15, 23, 42, 0.42) 0 1px, transparent 1px)'
|
|
3921
3815
|
].join(', ');
|
|
3922
|
-
const motionKey = `
|
|
3816
|
+
const motionKey = `line-css|${smallStepValue}|${majorStepValue}|${safeOpacity.toFixed(3)}`;
|
|
3923
3817
|
|
|
3924
3818
|
if (motionKey === this._lastLocalSnapGridKey) return false;
|
|
3925
3819
|
|
|
@@ -3955,7 +3849,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3955
3849
|
LOCAL_SNAP_GRID_DEFAULT_OPACITY,
|
|
3956
3850
|
'base'
|
|
3957
3851
|
);
|
|
3958
|
-
this._localSnapGridStyleDeferredForZoom = true;
|
|
3959
3852
|
return true;
|
|
3960
3853
|
}
|
|
3961
3854
|
|
|
@@ -4000,7 +3893,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4000
3893
|
}
|
|
4001
3894
|
|
|
4002
3895
|
this._localSnapGridVisible = false;
|
|
4003
|
-
this._localSnapGridStyleDeferredForZoom = false;
|
|
4004
3896
|
this._lastLocalSnapGridPositionRevision = -1;
|
|
4005
3897
|
if (layer.style.opacity !== '0') {
|
|
4006
3898
|
layer.style.opacity = '0';
|
|
@@ -4060,29 +3952,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4060
3952
|
this._lastLocalSnapGridWorldStep = gridProjection.worldStep;
|
|
4061
3953
|
this._lastLocalSnapGridWorldPeriod = gridProjection.worldStep * 10;
|
|
4062
3954
|
const styleKind = this._getLocalSnapGridStyleKind();
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
styleKind
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
this._applyLocalSnapGridStyle(
|
|
4071
|
-
layer,
|
|
4072
|
-
styleKind,
|
|
4073
|
-
smallStepPx,
|
|
4074
|
-
majorStepPx,
|
|
4075
|
-
opacity
|
|
4076
|
-
);
|
|
4077
|
-
} else if (shouldDeferLocalGridStyleForZoom === true) {
|
|
4078
|
-
this._applyLocalSnapGridMotionStyle(
|
|
4079
|
-
layer,
|
|
4080
|
-
smallStepPx,
|
|
4081
|
-
majorStepPx,
|
|
4082
|
-
opacity
|
|
4083
|
-
);
|
|
4084
|
-
this._localSnapGridStyleDeferredForZoom = true;
|
|
4085
|
-
}
|
|
3955
|
+
this._applyLocalSnapGridStyle(
|
|
3956
|
+
layer,
|
|
3957
|
+
styleKind,
|
|
3958
|
+
smallStepPx,
|
|
3959
|
+
majorStepPx,
|
|
3960
|
+
opacity
|
|
3961
|
+
);
|
|
4086
3962
|
|
|
4087
3963
|
this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
|
|
4088
3964
|
this._lastLocalSnapGridPositionRevision = pointerRevision;
|
|
@@ -4101,15 +3977,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4101
3977
|
return false;
|
|
4102
3978
|
}
|
|
4103
3979
|
|
|
4104
|
-
const shouldRefreshDeferredZoomProjection =
|
|
4105
|
-
this.isZooming === true ||
|
|
4106
|
-
this._localSnapGridStyleDeferredForZoom === true;
|
|
4107
3980
|
if (!this._localSnapGridLayer?.isConnected || !this._lastLocalSnapGridKey) {
|
|
4108
3981
|
const layer = this._ensureLocalSnapGridLayer();
|
|
4109
3982
|
if (!layer) {
|
|
4110
3983
|
return false;
|
|
4111
3984
|
}
|
|
4112
|
-
if (
|
|
3985
|
+
if (this.isZooming === true) {
|
|
4113
3986
|
this._ensureLocalSnapGridBaseStyle(layer);
|
|
4114
3987
|
} else {
|
|
4115
3988
|
return this._syncLocalSnapGridLayer(visible);
|
|
@@ -4132,20 +4005,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4132
4005
|
return false;
|
|
4133
4006
|
}
|
|
4134
4007
|
const styleKind = this._getLocalSnapGridStyleKind();
|
|
4135
|
-
if (
|
|
4008
|
+
if (this.isZooming === true) {
|
|
4136
4009
|
const vfov = (Number(this.camera?.fov || 45) * Math.PI) / 180;
|
|
4137
4010
|
const pxPerWorld = height / Math.max(1, 2 * Math.tan(vfov / 2) * cameraZ);
|
|
4138
4011
|
const projection = this._resolveLocalSnapGridWorldStep(pxPerWorld);
|
|
4139
4012
|
this._applyLocalSnapGridStyle(
|
|
4140
4013
|
layer, styleKind, projection.smallStepPx, projection.majorStepPx, opacity);
|
|
4141
|
-
this._localSnapGridStyleDeferredForZoom = false;
|
|
4142
|
-
} else if (shouldRefreshDeferredZoomProjection === true) {
|
|
4143
|
-
const vfov = (Number(this.camera?.fov || 45) * Math.PI) / 180;
|
|
4144
|
-
const pxPerWorld = height / Math.max(1, 2 * Math.tan(vfov / 2) * cameraZ);
|
|
4145
|
-
const projection = this._resolveLocalSnapGridWorldStep(pxPerWorld);
|
|
4146
|
-
this._applyLocalSnapGridMotionStyle(
|
|
4147
|
-
layer, projection.smallStepPx, projection.majorStepPx, opacity);
|
|
4148
|
-
this._localSnapGridStyleDeferredForZoom = true;
|
|
4149
4014
|
}
|
|
4150
4015
|
this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
|
|
4151
4016
|
this._lastLocalSnapGridPositionRevision = pointerRevision;
|
|
@@ -6255,11 +6120,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6255
6120
|
if (shouldFinalizeMotionThisFrame) {
|
|
6256
6121
|
this._lastMotionEndAt = frameStart;
|
|
6257
6122
|
if (zoomEndedThisFrame === true) {
|
|
6258
|
-
// The compositor transform already keeps the grid in the
|
|
6259
|
-
// canonical world coordinate system. Preserve that exact
|
|
6260
|
-
// pose here and let the existing idle cadence refresh the
|
|
6261
|
-
// crisp raster once, so physical-wheel notches cannot
|
|
6262
|
-
// trigger canvas.toDataURL() on every no-input frame.
|
|
6263
6123
|
this._localSnapGridPointerWakeDeferredForZoom = false;
|
|
6264
6124
|
}
|
|
6265
6125
|
if (cameraEndedThisFrame) {
|
|
@@ -7255,17 +7115,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7255
7115
|
const localSnapGridPointerRevision = Math.max(0, Number(this._localSnapGridPointerRevision || 0));
|
|
7256
7116
|
const hasPendingLocalSnapGridPointerMove =
|
|
7257
7117
|
Number(this._lastLocalSnapGridPositionRevision ?? -1) !== localSnapGridPointerRevision;
|
|
7258
|
-
const shouldDeferLocalSnapGridRasterUntilBurstSettle = !!(
|
|
7259
|
-
this._localSnapGridStyleDeferredForZoom === true &&
|
|
7260
|
-
wheelZoomBurstSettledThisFrame !== true
|
|
7261
|
-
);
|
|
7262
7118
|
const shouldUseLocalSnapGridPositionOnly = !!(
|
|
7263
7119
|
this._localSnapGridLayer?.isConnected &&
|
|
7264
7120
|
this._lastLocalSnapGridKey &&
|
|
7265
7121
|
(
|
|
7266
7122
|
isCameraNavigationOnlyInteractiveFrame === true ||
|
|
7267
|
-
hasPendingLocalSnapGridPointerMove === true
|
|
7268
|
-
shouldDeferLocalSnapGridRasterUntilBurstSettle === true
|
|
7123
|
+
hasPendingLocalSnapGridPointerMove === true
|
|
7269
7124
|
)
|
|
7270
7125
|
);
|
|
7271
7126
|
syncLocalSnapGridForCameraNavigation(this, shouldUseLocalSnapGridPositionOnly === true);
|
|
@@ -8050,7 +7905,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8050
7905
|
this._localSnapGridSpotlightLayer.remove();
|
|
8051
7906
|
this._localSnapGridSpotlightLayer = null;
|
|
8052
7907
|
}
|
|
8053
|
-
this._localSnapGridTileCanvas = null;
|
|
8054
7908
|
if (this._backgroundGridLayerHost) {
|
|
8055
7909
|
this._backgroundGridLayerHost.remove();
|
|
8056
7910
|
this._backgroundGridLayerHost = null;
|
|
@@ -1580,6 +1580,35 @@
|
|
|
1580
1580
|
|| module?.isWindowResizing === true;
|
|
1581
1581
|
}
|
|
1582
1582
|
|
|
1583
|
+
function isCssImageHighDetailBand(module = _module) {
|
|
1584
|
+
const cameraZ = Number(module?.camera?.position?.z);
|
|
1585
|
+
const midThreshold = Number(globalThis.LODRenderer?.LOD_THRESHOLDS?.MID || 9000);
|
|
1586
|
+
if (Number.isFinite(cameraZ) && Number.isFinite(midThreshold) && midThreshold > 0) {
|
|
1587
|
+
return cameraZ < midThreshold;
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
const band = String(module?.lodRenderer?._currentLodBand || '').trim().toUpperCase();
|
|
1591
|
+
return band !== 'MID' && band !== 'FAR';
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
function hasHighResolutionCssImageSource(nodeModel) {
|
|
1595
|
+
if (!nodeModel) return false;
|
|
1596
|
+
const assetUrls = window.MindMapNodes?.getNodeImageAssetUrls?.(nodeModel) || null;
|
|
1597
|
+
if (window.MindMapImagePolicy?.hasHighResolutionImageSource) {
|
|
1598
|
+
return window.MindMapImagePolicy.hasHighResolutionImageSource(nodeModel, assetUrls) === true;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
const metadata = getCssMediaMetadata(nodeModel);
|
|
1602
|
+
return !!(
|
|
1603
|
+
assetUrls?.fullResUrl ||
|
|
1604
|
+
assetUrls?.originalUrl ||
|
|
1605
|
+
assetUrls?.originalPath ||
|
|
1606
|
+
metadata?.OriginalUrl ||
|
|
1607
|
+
metadata?.originalUrl ||
|
|
1608
|
+
metadata?.OriginalPath
|
|
1609
|
+
);
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1583
1612
|
function shouldPromoteCssImageOriginal(nodeModel, module = _module) {
|
|
1584
1613
|
const nodeId = String(nodeModel?.id ?? nodeModel?.Id ?? '').trim();
|
|
1585
1614
|
if (!nodeId || !module) {
|
|
@@ -1598,7 +1627,14 @@
|
|
|
1598
1627
|
return true;
|
|
1599
1628
|
}
|
|
1600
1629
|
|
|
1601
|
-
|
|
1630
|
+
if (!isCssImageHighDetailBand(module) || isCssImagePromotionInteractionActive(module)) {
|
|
1631
|
+
return false;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
const entry = module.nodeObjectsById?.get?.(nodeId) || null;
|
|
1635
|
+
return entry?.currentType === 'CSS'
|
|
1636
|
+
&& entry?.cssObject?.visible === true
|
|
1637
|
+
&& hasHighResolutionCssImageSource(nodeModel);
|
|
1602
1638
|
}
|
|
1603
1639
|
|
|
1604
1640
|
function getPostLoadCssImagePreviewHoldMs(module = _module) {
|
|
@@ -1721,7 +1757,7 @@
|
|
|
1721
1757
|
clearCssImagePromotionQueue();
|
|
1722
1758
|
_cssImagePromotionProcessing = false;
|
|
1723
1759
|
activeModule?.nodeObjectsById?.forEach?.((entry, nodeId) => {
|
|
1724
|
-
if (
|
|
1760
|
+
if (hasHighResolutionCssImageSource(entry?.model)) {
|
|
1725
1761
|
enqueueCssImagePromotion(nodeId);
|
|
1726
1762
|
}
|
|
1727
1763
|
});
|
|
@@ -4202,16 +4238,29 @@
|
|
|
4202
4238
|
const forceAnimatedGifOriginal = isAnimatedGifCssImageNode(nodeModel);
|
|
4203
4239
|
|
|
4204
4240
|
const assetUrls = window.MindMapNodes?.getNodeImageAssetUrls?.(nodeModel) || null;
|
|
4205
|
-
const
|
|
4206
|
-
window.MindMapImagePolicy?.
|
|
4241
|
+
const originalReference = normalizeCssMediaUrl(
|
|
4242
|
+
window.MindMapImagePolicy?.getImageOriginalReference?.(nodeModel, assetUrls)
|
|
4243
|
+
|| window.MindMapImagePolicy?.getGeneratedImageOriginalReference?.(nodeModel, assetUrls)
|
|
4244
|
+
|| ''
|
|
4207
4245
|
);
|
|
4246
|
+
const isGeneratedImage = window.MindMapImagePolicy?.isGeneratedImageNodeModel?.(nodeModel) === true;
|
|
4247
|
+
const shouldPromoteOriginal = shouldPromoteCssImageOriginal(nodeModel);
|
|
4248
|
+
if (!shouldPromoteOriginal
|
|
4249
|
+
&& originalReference
|
|
4250
|
+
&& isCssImageHighDetailBand(_module)
|
|
4251
|
+
&& isCssImagePromotionInteractionActive(_module)) {
|
|
4252
|
+
const nodeId = String(nodeModel?.id ?? nodeModel?.Id ?? '').trim();
|
|
4253
|
+
if (enqueueCssImagePromotion(nodeId)) {
|
|
4254
|
+
scheduleCssImagePromotionPump(_module, 180);
|
|
4255
|
+
}
|
|
4256
|
+
return;
|
|
4257
|
+
}
|
|
4208
4258
|
if (options.forceOriginal !== true
|
|
4209
4259
|
&& !forceAnimatedGifOriginal
|
|
4210
|
-
&& !
|
|
4211
|
-
&& !shouldPromoteCssImageOriginal(nodeModel)) return;
|
|
4260
|
+
&& !shouldPromoteOriginal) return;
|
|
4212
4261
|
const metadata = getCssMediaMetadata(nodeModel);
|
|
4213
4262
|
const originalUrl = normalizeCssMediaUrl(
|
|
4214
|
-
|
|
4263
|
+
originalReference
|
|
4215
4264
|
|| assetUrls?.fullResUrl
|
|
4216
4265
|
|| assetUrls?.originalUrl
|
|
4217
4266
|
|| metadata?.OriginalUrl
|
|
@@ -4231,8 +4280,10 @@
|
|
|
4231
4280
|
isThumbnailCssMediaUrl(currentSource)
|
|
4232
4281
|
) {
|
|
4233
4282
|
mediaEl.dataset.assetRefreshAttempted = '';
|
|
4234
|
-
if (
|
|
4235
|
-
console.info(
|
|
4283
|
+
if (originalReference) {
|
|
4284
|
+
console.info(isGeneratedImage
|
|
4285
|
+
? '[MindMapCss3DManager] Promoting generated image preview to original'
|
|
4286
|
+
: '[MindMapCss3DManager] Promoting image preview to original', {
|
|
4236
4287
|
nodeId: String(nodeModel?.id ?? nodeModel?.Id ?? '')
|
|
4237
4288
|
});
|
|
4238
4289
|
}
|
|
@@ -4253,8 +4304,10 @@
|
|
|
4253
4304
|
if (mediaEl.dataset.originalResolveAttempted === '1') return;
|
|
4254
4305
|
|
|
4255
4306
|
mediaEl.dataset.originalResolveAttempted = '1';
|
|
4256
|
-
if (
|
|
4257
|
-
console.info(
|
|
4307
|
+
if (originalReference) {
|
|
4308
|
+
console.info(isGeneratedImage
|
|
4309
|
+
? '[MindMapCss3DManager] Resolving generated image original after preview'
|
|
4310
|
+
: '[MindMapCss3DManager] Resolving image original after preview', {
|
|
4258
4311
|
nodeId: String(nodeModel?.id ?? nodeModel?.Id ?? '')
|
|
4259
4312
|
});
|
|
4260
4313
|
}
|
|
@@ -4397,7 +4450,7 @@
|
|
|
4397
4450
|
isCssImagePreviewHoldActive() ||
|
|
4398
4451
|
isCssImagePromotionInteractionActive(activeModule);
|
|
4399
4452
|
if (shouldQueuePromotion) {
|
|
4400
|
-
if (
|
|
4453
|
+
if (hasHighResolutionCssImageSource(entry.model)) {
|
|
4401
4454
|
enqueueCssImagePromotion(nodeId);
|
|
4402
4455
|
}
|
|
4403
4456
|
return;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(function () {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
const BUILD_ID = '20260819-image-original-resize-
|
|
4
|
+
const BUILD_ID = '20260819-image-original-resize-v2';
|
|
5
5
|
|
|
6
6
|
function normalizeContentType(nodeModel) {
|
|
7
7
|
return String(nodeModel?.contentType ?? nodeModel?.ContentType ?? '').trim().toLowerCase();
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
|| operation === 'inpaint';
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
function
|
|
72
|
-
if (!
|
|
71
|
+
function getImageOriginalReference(nodeModel, assetUrls = null) {
|
|
72
|
+
if (!nodeModel || normalizeContentType(nodeModel) !== 'image') return '';
|
|
73
73
|
|
|
74
74
|
const metadata = getMetadata(nodeModel);
|
|
75
75
|
const candidates = [
|
|
@@ -88,6 +88,15 @@
|
|
|
88
88
|
return '';
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
function getGeneratedImageOriginalReference(nodeModel, assetUrls = null) {
|
|
92
|
+
if (!isGeneratedImageNodeModel(nodeModel)) return '';
|
|
93
|
+
return getImageOriginalReference(nodeModel, assetUrls);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function hasHighResolutionImageSource(nodeModel, assetUrls = null) {
|
|
97
|
+
return !!getImageOriginalReference(nodeModel, assetUrls);
|
|
98
|
+
}
|
|
99
|
+
|
|
91
100
|
function getOriginalAspectRatio(nodeEntry, fallbackWidth = 0, fallbackHeight = 0) {
|
|
92
101
|
const nodeModel = nodeEntry?.model ?? nodeEntry;
|
|
93
102
|
if (!nodeModel || normalizeContentType(nodeModel) !== 'image') return 0;
|
|
@@ -194,14 +203,16 @@
|
|
|
194
203
|
window.MindMapImagePolicy = {
|
|
195
204
|
build: BUILD_ID,
|
|
196
205
|
isGeneratedImageNodeModel,
|
|
206
|
+
getImageOriginalReference,
|
|
197
207
|
getGeneratedImageOriginalReference,
|
|
208
|
+
hasHighResolutionImageSource,
|
|
198
209
|
getOriginalAspectRatio,
|
|
199
210
|
constrainBottomRightDimensions,
|
|
200
211
|
snapAspectLockedDimensions
|
|
201
212
|
};
|
|
202
213
|
|
|
203
214
|
window.MindCanvasBuildInfo?.registerPart?.('imagePolicy', BUILD_ID, {
|
|
204
|
-
|
|
215
|
+
originalAfterLoad: true,
|
|
205
216
|
bottomRightAspectLock: true
|
|
206
217
|
});
|
|
207
218
|
})();
|
package/wwwroot/_framework/{MindExecution.Core.rmpf5us73b.dll → MindExecution.Core.94m6ejtca1.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.ratalb86xy.dll → MindExecution.Web.cnxtclcio0.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-9FCH8qt3Ug3aaz4AO+TvQDN32omKWc3N92RLkY2hXNg=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -121,17 +121,17 @@
|
|
|
121
121
|
"System.Xml.XDocument.sn51jas17n.dll": "System.Xml.XDocument.dll",
|
|
122
122
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
123
123
|
"netstandard.b50t77veor.dll": "netstandard.dll",
|
|
124
|
-
"System.Private.CoreLib.
|
|
125
|
-
"MindExecution.Core.
|
|
126
|
-
"MindExecution.Kernel.
|
|
127
|
-
"MindExecution.Plugins.Admin.
|
|
128
|
-
"MindExecution.Plugins.Business.
|
|
129
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
-
"MindExecution.Plugins.Directory.
|
|
131
|
-
"MindExecution.Plugins.PlanMaster.
|
|
132
|
-
"MindExecution.Plugins.YouTube.
|
|
133
|
-
"MindExecution.Shared.
|
|
134
|
-
"MindExecution.Web.
|
|
124
|
+
"System.Private.CoreLib.wflwsce1yq.dll": "System.Private.CoreLib.dll",
|
|
125
|
+
"MindExecution.Core.94m6ejtca1.dll": "MindExecution.Core.dll",
|
|
126
|
+
"MindExecution.Kernel.61ttjshkyz.dll": "MindExecution.Kernel.dll",
|
|
127
|
+
"MindExecution.Plugins.Admin.4b5expbfln.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
|
+
"MindExecution.Plugins.Business.ohwctqyt61.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
+
"MindExecution.Plugins.Concept.f8q8szf0d6.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.zh2sduii1b.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.1cwldgvpvn.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.5s3kg6vrqh.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.hnzia43ril.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.cnxtclcio0.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",
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
},
|
|
157
157
|
"coreAssembly": {
|
|
158
158
|
"System.Runtime.InteropServices.JavaScript.pn2wvizzet.dll": "sha256-dczkyi5P7nETlP7roYWNE0BobJPm6wyt7Bc+ZhBu3NA=",
|
|
159
|
-
"System.Private.CoreLib.
|
|
159
|
+
"System.Private.CoreLib.wflwsce1yq.dll": "sha256-dF/Q+yfJy5iZl9Auw+hkCG9FdPHTCzfL06D3ps9JZNw="
|
|
160
160
|
},
|
|
161
161
|
"assembly": {
|
|
162
162
|
"Google.Protobuf.9h59ukbel7.dll": "sha256-A541k1abRTWr6MqmCXfGDYcKHirypJS19mzPQu3lJt0=",
|
|
@@ -276,18 +276,18 @@
|
|
|
276
276
|
"System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
|
|
277
277
|
"System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
|
|
278
278
|
"netstandard.b50t77veor.dll": "sha256-//jQGOXjb8ET8WtXgOJrAxLx6E7zDJ5RjRRutwkvmxo=",
|
|
279
|
-
"MindExecution.Core.
|
|
280
|
-
"MindExecution.Kernel.
|
|
281
|
-
"MindExecution.Plugins.Business.
|
|
282
|
-
"MindExecution.Plugins.Concept.
|
|
283
|
-
"MindExecution.Plugins.PlanMaster.
|
|
284
|
-
"MindExecution.Shared.
|
|
285
|
-
"MindExecution.Web.
|
|
279
|
+
"MindExecution.Core.94m6ejtca1.dll": "sha256-h4BMu1KaPYr8AwhzWLERvjqy1+UqGJm7NISXSGbeBHo=",
|
|
280
|
+
"MindExecution.Kernel.61ttjshkyz.dll": "sha256-xtT+n0k7nne80t4G4jbMspn4PJ0dgYDoFyDBxAlnvqw=",
|
|
281
|
+
"MindExecution.Plugins.Business.ohwctqyt61.dll": "sha256-hItTqNXmf6iXbCTFoCdv3Gx+AjcIsamwLXJmK+VWEHA=",
|
|
282
|
+
"MindExecution.Plugins.Concept.f8q8szf0d6.dll": "sha256-MdGQvGdSKxaCQYosvUQV/QcPKMVzLeGLeSMOXa3nIOM=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.1cwldgvpvn.dll": "sha256-D8xGQeC/8Fv0xSFEQeYPJFrrLzymN/k1yBbLHw4+TGM=",
|
|
284
|
+
"MindExecution.Shared.hnzia43ril.dll": "sha256-/U78GwtlD55baMi6tRVPVLMFPAT4+fJE+B9hYVzCR98=",
|
|
285
|
+
"MindExecution.Web.cnxtclcio0.dll": "sha256-mI9Fl0XrdpxBAmGSCVpmfQgchfDy5RtERmnSGG5NhIY="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
|
-
"MindExecution.Plugins.Admin.
|
|
289
|
-
"MindExecution.Plugins.Directory.
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
288
|
+
"MindExecution.Plugins.Admin.4b5expbfln.dll": "sha256-YEe+33ILM8lqiiMY5m2iWK4UpwBPiCmEZ7o/ZvVLLE0=",
|
|
289
|
+
"MindExecution.Plugins.Directory.zh2sduii1b.dll": "sha256-pwBNkKlRTCxv+NAuhpFwvtNaD7fOLponx0PjI1g9NgM=",
|
|
290
|
+
"MindExecution.Plugins.YouTube.5s3kg6vrqh.dll": "sha256-JehZHzt2llImaxfZqKGypqrZh4nJuNwunl8P4E0ABe4="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -614,7 +614,7 @@
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
const base = '_content/MindExecution.Shared/js/';
|
|
617
|
-
const scriptVersion = '20260819-
|
|
617
|
+
const scriptVersion = '20260819-grid-single-css-representation-v978';
|
|
618
618
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
619
619
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
620
620
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "TA7cGcef",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -86,7 +86,7 @@ self.assetsManifest = {
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-board-render-ownership.js"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-kAkXetdqRDypZg9PkOH48rgEbUZG/bkgLWhRLGrSdcc=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -98,7 +98,7 @@ self.assetsManifest = {
|
|
|
98
98
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-hotpath.js"
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
|
-
"hash": "sha256-
|
|
101
|
+
"hash": "sha256-v+2AoDqRK5YyH9OTfKmEOmfgZTx0iSOMXDxvsmffzEE=",
|
|
102
102
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
103
103
|
},
|
|
104
104
|
{
|
|
@@ -118,7 +118,7 @@ self.assetsManifest = {
|
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
"hash": "sha256-
|
|
121
|
+
"hash": "sha256-2hxpxkdsYVlyDxDcw+ym5nH8SNgBuCBSm8vm4zXCN8M=",
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-image-policy.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
@@ -442,44 +442,44 @@ self.assetsManifest = {
|
|
|
442
442
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Core.
|
|
445
|
+
"hash": "sha256-h4BMu1KaPYr8AwhzWLERvjqy1+UqGJm7NISXSGbeBHo=",
|
|
446
|
+
"url": "_framework/MindExecution.Core.94m6ejtca1.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256
|
|
450
|
-
"url": "_framework/MindExecution.Kernel.
|
|
449
|
+
"hash": "sha256-xtT+n0k7nne80t4G4jbMspn4PJ0dgYDoFyDBxAlnvqw=",
|
|
450
|
+
"url": "_framework/MindExecution.Kernel.61ttjshkyz.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
|
-
"hash": "sha256-
|
|
454
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
453
|
+
"hash": "sha256-YEe+33ILM8lqiiMY5m2iWK4UpwBPiCmEZ7o/ZvVLLE0=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.Admin.4b5expbfln.dll"
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
|
-
"hash": "sha256-
|
|
458
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
457
|
+
"hash": "sha256-hItTqNXmf6iXbCTFoCdv3Gx+AjcIsamwLXJmK+VWEHA=",
|
|
458
|
+
"url": "_framework/MindExecution.Plugins.Business.ohwctqyt61.dll"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
|
-
"hash": "sha256-
|
|
462
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
461
|
+
"hash": "sha256-MdGQvGdSKxaCQYosvUQV/QcPKMVzLeGLeSMOXa3nIOM=",
|
|
462
|
+
"url": "_framework/MindExecution.Plugins.Concept.f8q8szf0d6.dll"
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
|
-
"hash": "sha256-
|
|
466
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
465
|
+
"hash": "sha256-pwBNkKlRTCxv+NAuhpFwvtNaD7fOLponx0PjI1g9NgM=",
|
|
466
|
+
"url": "_framework/MindExecution.Plugins.Directory.zh2sduii1b.dll"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
|
-
"hash": "sha256-
|
|
470
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
469
|
+
"hash": "sha256-D8xGQeC/8Fv0xSFEQeYPJFrrLzymN/k1yBbLHw4+TGM=",
|
|
470
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.1cwldgvpvn.dll"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
|
-
"hash": "sha256-
|
|
474
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
473
|
+
"hash": "sha256-JehZHzt2llImaxfZqKGypqrZh4nJuNwunl8P4E0ABe4=",
|
|
474
|
+
"url": "_framework/MindExecution.Plugins.YouTube.5s3kg6vrqh.dll"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
|
-
"hash": "sha256
|
|
478
|
-
"url": "_framework/MindExecution.Shared.
|
|
477
|
+
"hash": "sha256-/U78GwtlD55baMi6tRVPVLMFPAT4+fJE+B9hYVzCR98=",
|
|
478
|
+
"url": "_framework/MindExecution.Shared.hnzia43ril.dll"
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
|
-
"hash": "sha256-
|
|
482
|
-
"url": "_framework/MindExecution.Web.
|
|
481
|
+
"hash": "sha256-mI9Fl0XrdpxBAmGSCVpmfQgchfDy5RtERmnSGG5NhIY=",
|
|
482
|
+
"url": "_framework/MindExecution.Web.cnxtclcio0.dll"
|
|
483
483
|
},
|
|
484
484
|
{
|
|
485
485
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -666,8 +666,8 @@ self.assetsManifest = {
|
|
|
666
666
|
"url": "_framework/System.ObjectModel.yct1gdirzf.dll"
|
|
667
667
|
},
|
|
668
668
|
{
|
|
669
|
-
"hash": "sha256-
|
|
670
|
-
"url": "_framework/System.Private.CoreLib.
|
|
669
|
+
"hash": "sha256-dF/Q+yfJy5iZl9Auw+hkCG9FdPHTCzfL06D3ps9JZNw=",
|
|
670
|
+
"url": "_framework/System.Private.CoreLib.wflwsce1yq.dll"
|
|
671
671
|
},
|
|
672
672
|
{
|
|
673
673
|
"hash": "sha256-MB8kD4MSWVtneMtZ06c8cKXJCO/EBXrSY3H535KTU9o=",
|
|
@@ -798,7 +798,7 @@ self.assetsManifest = {
|
|
|
798
798
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
799
799
|
},
|
|
800
800
|
{
|
|
801
|
-
"hash": "sha256-
|
|
801
|
+
"hash": "sha256-bmFfbqNQJa7WWf+zUsVKorVyf4hubhhYmuxPr45ZwVg=",
|
|
802
802
|
"url": "_framework/blazor.boot.json"
|
|
803
803
|
},
|
|
804
804
|
{
|
|
@@ -874,7 +874,7 @@ self.assetsManifest = {
|
|
|
874
874
|
"url": "icon-512.png"
|
|
875
875
|
},
|
|
876
876
|
{
|
|
877
|
-
"hash": "sha256-
|
|
877
|
+
"hash": "sha256-JD51EiDeq05HKJMT+XHwWPwrolm+b92IT8q+Da+XKMw=",
|
|
878
878
|
"url": "index.html"
|
|
879
879
|
},
|
|
880
880
|
{
|