@mindexec/cli 0.2.459 → 0.2.460
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 +49 -7
- package/wwwroot/_framework/{MindExecution.Core.b973f5f64y.dll → MindExecution.Core.oqju650dkd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.k4h9fvi9wb.dll → MindExecution.Kernel.7zjugdfmfg.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.u2emae8cb5.dll → MindExecution.Plugins.Admin.qln7lkmsnn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.cysw4qtyke.dll → MindExecution.Plugins.Business.rd6flxuebm.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.8iehgvzjio.dll → MindExecution.Plugins.Concept.0qrgx3epss.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.t621fsxq2i.dll → MindExecution.Plugins.Directory.4prauy9d1z.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.ft631uc7ki.dll → MindExecution.Plugins.PlanMaster.cobfta1p3l.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.arivgu92h1.dll → MindExecution.Plugins.YouTube.99bahbgkkr.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.wm997st9eb.dll → MindExecution.Shared.sevaa4rgkp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.osdbdrue4h.dll → MindExecution.Web.coqh2ccnuk.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +24 -24
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -3797,13 +3797,21 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3797
3797
|
Math.round(safeMajorStep * 100),
|
|
3798
3798
|
Math.round(safeOpacity * 100)
|
|
3799
3799
|
].join('|');
|
|
3800
|
-
const
|
|
3800
|
+
const smallStepValue = safeSmallStep.toFixed(3);
|
|
3801
|
+
const majorStepValue = safeMajorStep.toFixed(3);
|
|
3802
|
+
const showMinorDots = safeSmallStep >= 2.25;
|
|
3803
|
+
const backgroundSizeValue = safeStyleKind === 'dot'
|
|
3804
|
+
? (showMinorDots
|
|
3805
|
+
? `${majorStepValue}px ${majorStepValue}px, ${smallStepValue}px ${smallStepValue}px`
|
|
3806
|
+
: `${majorStepValue}px ${majorStepValue}px`)
|
|
3807
|
+
: `${majorStepValue}px ${majorStepValue}px`;
|
|
3808
|
+
const backgroundSizeKey = backgroundSizeValue;
|
|
3801
3809
|
|
|
3802
3810
|
if (localGridKey === this._lastLocalSnapGridKey) {
|
|
3803
3811
|
this._localSnapGridRasterPeriodPx = safeMajorStep;
|
|
3804
3812
|
if (backgroundSizeKey !== this._lastLocalSnapGridBackgroundSizeKey) {
|
|
3805
3813
|
this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeKey;
|
|
3806
|
-
layer.style.backgroundSize =
|
|
3814
|
+
layer.style.backgroundSize = backgroundSizeValue;
|
|
3807
3815
|
this._lastLocalSnapGridTransformKey = '';
|
|
3808
3816
|
}
|
|
3809
3817
|
return false;
|
|
@@ -3811,6 +3819,20 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3811
3819
|
|
|
3812
3820
|
const opacityValue = safeOpacity.toFixed(3);
|
|
3813
3821
|
this._lastLocalSnapGridOpacity = opacityValue;
|
|
3822
|
+
if (safeStyleKind === 'dot') {
|
|
3823
|
+
const majorDot = 'radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.82) 0 1.9px, transparent 2px)';
|
|
3824
|
+
const minorDot = 'radial-gradient(circle at 0 0, rgba(58, 69, 88, 0.68) 0 1.2px, transparent 1.3px)';
|
|
3825
|
+
const backgroundImage = showMinorDots ? `${majorDot}, ${minorDot}` : majorDot;
|
|
3826
|
+
this._lastLocalSnapGridKey = localGridKey;
|
|
3827
|
+
this._lastLocalSnapGridPatternPeriodPx = safeMajorStep;
|
|
3828
|
+
this._localSnapGridRasterPeriodPx = safeMajorStep;
|
|
3829
|
+
this._lastLocalSnapGridTransformKey = '';
|
|
3830
|
+
if (layer.style.backgroundImage !== backgroundImage) layer.style.backgroundImage = backgroundImage;
|
|
3831
|
+
this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeKey;
|
|
3832
|
+
if (layer.style.backgroundSize !== backgroundSizeValue) layer.style.backgroundSize = backgroundSizeValue;
|
|
3833
|
+
if (layer.style.opacity !== opacityValue) layer.style.opacity = opacityValue;
|
|
3834
|
+
return true;
|
|
3835
|
+
}
|
|
3814
3836
|
const tileCanvas = this._localSnapGridTileCanvas || document.createElement('canvas');
|
|
3815
3837
|
this._localSnapGridTileCanvas = tileCanvas;
|
|
3816
3838
|
const tileSize = this._drawLocalSnapGridTile(
|
|
@@ -3828,7 +3850,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3828
3850
|
this._lastLocalSnapGridTransformKey = '';
|
|
3829
3851
|
layer.style.backgroundImage = `url("${tileCanvas.toDataURL('image/png')}")`;
|
|
3830
3852
|
this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeKey;
|
|
3831
|
-
layer.style.backgroundSize =
|
|
3853
|
+
layer.style.backgroundSize = backgroundSizeValue;
|
|
3832
3854
|
if (layer.style.opacity !== opacityValue) {
|
|
3833
3855
|
layer.style.opacity = opacityValue;
|
|
3834
3856
|
}
|
|
@@ -3936,7 +3958,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3936
3958
|
const top = Number(viewportMetrics.top || 0);
|
|
3937
3959
|
const pointerRevision = Math.max(0, Number(this._localSnapGridPointerRevision || 0));
|
|
3938
3960
|
|
|
3939
|
-
if (this.isZooming === true &&
|
|
3961
|
+
if (this.isZooming === true &&
|
|
3962
|
+
!!this._lastLocalSnapGridKey &&
|
|
3963
|
+
this._getLocalSnapGridStyleKind() !== 'dot') {
|
|
3940
3964
|
this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
|
|
3941
3965
|
this._lastLocalSnapGridPositionRevision = pointerRevision;
|
|
3942
3966
|
this._localSnapGridStyleDeferredForZoom = true;
|
|
@@ -3962,6 +3986,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3962
3986
|
);
|
|
3963
3987
|
const shouldDeferLocalGridStyleForZoom =
|
|
3964
3988
|
this.isZooming === true &&
|
|
3989
|
+
styleKind !== 'dot' &&
|
|
3965
3990
|
!!this._lastLocalSnapGridKey;
|
|
3966
3991
|
|
|
3967
3992
|
if (shouldDeferLocalGridStyleForZoom !== true) {
|
|
@@ -4013,10 +4038,24 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4013
4038
|
const height = Math.max(1, Number(viewportMetrics.height || 0));
|
|
4014
4039
|
const left = Number(viewportMetrics.left || 0);
|
|
4015
4040
|
const top = Number(viewportMetrics.top || 0);
|
|
4041
|
+
const styleKind = this._getLocalSnapGridStyleKind();
|
|
4042
|
+
if (this.isZooming === true && styleKind === 'dot') {
|
|
4043
|
+
const cameraZ = Math.max(1, Number(this.camera?.position?.z || 1));
|
|
4044
|
+
const vfov = (Number(this.camera?.fov || 45) * Math.PI) / 180;
|
|
4045
|
+
const pxPerWorld = height / Math.max(1, 2 * Math.tan(vfov / 2) * cameraZ);
|
|
4046
|
+
const projection = this._resolveLocalSnapGridWorldStep(pxPerWorld);
|
|
4047
|
+
const rawOpacity = Math.max(0.38, Math.min(0.64,
|
|
4048
|
+
cameraZ <= 1800 ? 0.60 : 0.60 - ((cameraZ - 1800) / 36000)));
|
|
4049
|
+
const opacity = Math.max(0.38, Math.min(0.64,
|
|
4050
|
+
Math.round(rawOpacity / LOCAL_SNAP_GRID_OPACITY_BUCKET) * LOCAL_SNAP_GRID_OPACITY_BUCKET));
|
|
4051
|
+
this._applyLocalSnapGridStyle(
|
|
4052
|
+
layer, styleKind, projection.smallStepPx, projection.majorStepPx, opacity);
|
|
4053
|
+
this._localSnapGridStyleDeferredForZoom = false;
|
|
4054
|
+
}
|
|
4016
4055
|
this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
|
|
4017
4056
|
this._lastLocalSnapGridPositionRevision = pointerRevision;
|
|
4018
4057
|
|
|
4019
|
-
if (this.isZooming === true) {
|
|
4058
|
+
if (this.isZooming === true && styleKind !== 'dot') {
|
|
4020
4059
|
this._localSnapGridStyleDeferredForZoom = true;
|
|
4021
4060
|
}
|
|
4022
4061
|
this._setLocalSnapGridVisible(true, this._lastLocalSnapGridOpacity || null);
|
|
@@ -6196,7 +6235,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6196
6235
|
this.lodRenderer?.hasPendingNearCssWarmup?.(this) === true;
|
|
6197
6236
|
const isResidentMidFarLodFrame = this.useLODRendering &&
|
|
6198
6237
|
this.lodRenderer?.usesResidentMidFarInstances?.(this.camera) === true;
|
|
6199
|
-
|
|
6238
|
+
// The current camera band owns the boundary frame. isInLODMode
|
|
6239
|
+
// still describes the prior frame until updateLOD applies the
|
|
6240
|
+
// resident/full-res handoff.
|
|
6241
|
+
const isFullResMode = isResidentMidFarLodFrame !== true;
|
|
6200
6242
|
|
|
6201
6243
|
// Event-driven viewport sync handles the common case. Keep the
|
|
6202
6244
|
// fallback poll slow, and skip it entirely while resident MID/FAR
|
|
@@ -6232,7 +6274,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6232
6274
|
const isLodModeActive = this.lodRenderer?.isInLODMode === true;
|
|
6233
6275
|
const residentDirty = isResidentMidFarLodFrame &&
|
|
6234
6276
|
this.lodRenderer?.hasResidentDirtyWork?.(this.camera, this) === true;
|
|
6235
|
-
const residentBandChanging =
|
|
6277
|
+
const residentBandChanging = this.useLODRendering === true &&
|
|
6236
6278
|
this.lodRenderer?.willLodBandChange?.(this.camera) === true;
|
|
6237
6279
|
let canDeferResidentDirtyIdleFrame = false;
|
|
6238
6280
|
let canDeferResidentDirtyMotionFrame = false;
|
package/wwwroot/_framework/{MindExecution.Core.b973f5f64y.dll → MindExecution.Core.oqju650dkd.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.osdbdrue4h.dll → MindExecution.Web.coqh2ccnuk.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-j3+TOGBljyWZdYIgA9a2YYTlaG+Rt2EVMQ0fB5eRn8E=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -122,16 +122,16 @@
|
|
|
122
122
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
123
123
|
"netstandard.b50t77veor.dll": "netstandard.dll",
|
|
124
124
|
"System.Private.CoreLib.g6ztz7cmo2.dll": "System.Private.CoreLib.dll",
|
|
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.
|
|
125
|
+
"MindExecution.Core.oqju650dkd.dll": "MindExecution.Core.dll",
|
|
126
|
+
"MindExecution.Kernel.7zjugdfmfg.dll": "MindExecution.Kernel.dll",
|
|
127
|
+
"MindExecution.Plugins.Admin.qln7lkmsnn.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
|
+
"MindExecution.Plugins.Business.rd6flxuebm.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
+
"MindExecution.Plugins.Concept.0qrgx3epss.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.4prauy9d1z.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.cobfta1p3l.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.99bahbgkkr.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.sevaa4rgkp.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.coqh2ccnuk.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",
|
|
@@ -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.oqju650dkd.dll": "sha256-kAa63CfXtc76u8TyQM/hYA0BET+atu75fts3/mg4pTE=",
|
|
280
|
+
"MindExecution.Kernel.7zjugdfmfg.dll": "sha256-XWt7j9wlHb+PuYdstPVmPDLv15PcRahv3rNYrGzvI40=",
|
|
281
|
+
"MindExecution.Plugins.Business.rd6flxuebm.dll": "sha256-8XhddfNWrxDyHfFYmcDQutHhXIfGqfRKW3NVPyQ9Dbw=",
|
|
282
|
+
"MindExecution.Plugins.Concept.0qrgx3epss.dll": "sha256-WL1s5FZGLq9dOF3GDGasvY4ZU8559uF2t4a52KorOZw=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.cobfta1p3l.dll": "sha256-JCKZ9S1jGO/aZ+Xfit+r+nFxc1JqkBQIxLugL3c0r+Y=",
|
|
284
|
+
"MindExecution.Shared.sevaa4rgkp.dll": "sha256-fLiquQIwsr+IVLW6w9+MdHQTNZzETBx1MJe0e8IbXHs=",
|
|
285
|
+
"MindExecution.Web.coqh2ccnuk.dll": "sha256-TBO6TdRrS5Z/M45nFXsJKGz8Y7oQ0loKUSbFd3JbkJE="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
|
-
"MindExecution.Plugins.Admin.
|
|
289
|
-
"MindExecution.Plugins.Directory.
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
288
|
+
"MindExecution.Plugins.Admin.qln7lkmsnn.dll": "sha256-PthhAmI45Ysbmebc6FVPKp5YmQeb8ed0Spq5HUcwass=",
|
|
289
|
+
"MindExecution.Plugins.Directory.4prauy9d1z.dll": "sha256-uCBQe2vhbS85Awx84xfEJLmbvETRIv8o8eZsfnahtDg=",
|
|
290
|
+
"MindExecution.Plugins.YouTube.99bahbgkkr.dll": "sha256-g+tRUYc/SojxQ4PfQ2sswlIzY+dZBH0mtgtVSJetdys="
|
|
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 = '20260815-
|
|
617
|
+
const scriptVersion = '20260815-lod-grid-live-v973';
|
|
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": "IJfWdUwi",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -82,7 +82,7 @@ self.assetsManifest = {
|
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-animated-image-preview.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
|
-
"hash": "sha256-
|
|
85
|
+
"hash": "sha256-bKZK/OA/kLveWaNcyQGsjwhZsK+VG8zxKY1FyGBHp7o=",
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
@@ -434,44 +434,44 @@ self.assetsManifest = {
|
|
|
434
434
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Core.
|
|
437
|
+
"hash": "sha256-kAa63CfXtc76u8TyQM/hYA0BET+atu75fts3/mg4pTE=",
|
|
438
|
+
"url": "_framework/MindExecution.Core.oqju650dkd.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Kernel.
|
|
441
|
+
"hash": "sha256-XWt7j9wlHb+PuYdstPVmPDLv15PcRahv3rNYrGzvI40=",
|
|
442
|
+
"url": "_framework/MindExecution.Kernel.7zjugdfmfg.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
445
|
+
"hash": "sha256-PthhAmI45Ysbmebc6FVPKp5YmQeb8ed0Spq5HUcwass=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.Admin.qln7lkmsnn.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
449
|
+
"hash": "sha256-8XhddfNWrxDyHfFYmcDQutHhXIfGqfRKW3NVPyQ9Dbw=",
|
|
450
|
+
"url": "_framework/MindExecution.Plugins.Business.rd6flxuebm.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
|
-
"hash": "sha256-
|
|
454
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
453
|
+
"hash": "sha256-WL1s5FZGLq9dOF3GDGasvY4ZU8559uF2t4a52KorOZw=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.Concept.0qrgx3epss.dll"
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
|
-
"hash": "sha256-
|
|
458
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
457
|
+
"hash": "sha256-uCBQe2vhbS85Awx84xfEJLmbvETRIv8o8eZsfnahtDg=",
|
|
458
|
+
"url": "_framework/MindExecution.Plugins.Directory.4prauy9d1z.dll"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
|
-
"hash": "sha256-
|
|
462
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
461
|
+
"hash": "sha256-JCKZ9S1jGO/aZ+Xfit+r+nFxc1JqkBQIxLugL3c0r+Y=",
|
|
462
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.cobfta1p3l.dll"
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
|
-
"hash": "sha256-
|
|
466
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
465
|
+
"hash": "sha256-g+tRUYc/SojxQ4PfQ2sswlIzY+dZBH0mtgtVSJetdys=",
|
|
466
|
+
"url": "_framework/MindExecution.Plugins.YouTube.99bahbgkkr.dll"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
|
-
"hash": "sha256-
|
|
470
|
-
"url": "_framework/MindExecution.Shared.
|
|
469
|
+
"hash": "sha256-fLiquQIwsr+IVLW6w9+MdHQTNZzETBx1MJe0e8IbXHs=",
|
|
470
|
+
"url": "_framework/MindExecution.Shared.sevaa4rgkp.dll"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
|
-
"hash": "sha256-
|
|
474
|
-
"url": "_framework/MindExecution.Web.
|
|
473
|
+
"hash": "sha256-TBO6TdRrS5Z/M45nFXsJKGz8Y7oQ0loKUSbFd3JbkJE=",
|
|
474
|
+
"url": "_framework/MindExecution.Web.coqh2ccnuk.dll"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
477
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -790,7 +790,7 @@ self.assetsManifest = {
|
|
|
790
790
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
791
791
|
},
|
|
792
792
|
{
|
|
793
|
-
"hash": "sha256-
|
|
793
|
+
"hash": "sha256-dGUMkSzSrDNFzvK5yq2XOsi/E1yhLDe6b/TOh3zabLI=",
|
|
794
794
|
"url": "_framework/blazor.boot.json"
|
|
795
795
|
},
|
|
796
796
|
{
|
|
@@ -866,7 +866,7 @@ self.assetsManifest = {
|
|
|
866
866
|
"url": "icon-512.png"
|
|
867
867
|
},
|
|
868
868
|
{
|
|
869
|
-
"hash": "sha256-
|
|
869
|
+
"hash": "sha256-09pACZREKNjnfet+hL8kX0iFNjHKgdjnCO4JMu/we94=",
|
|
870
870
|
"url": "index.html"
|
|
871
871
|
},
|
|
872
872
|
{
|