@mindexec/cli 0.2.470 → 0.2.472
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-css3d-manager.js +65 -12
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-image-policy.js +15 -4
- package/wwwroot/_framework/{MindExecution.Core.kzbcbkmn27.dll → MindExecution.Core.94m6ejtca1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.c7qfof7tfg.dll → MindExecution.Kernel.61ttjshkyz.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.2vmuxhdwb6.dll → MindExecution.Plugins.Admin.4b5expbfln.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.pkpabtra36.dll → MindExecution.Plugins.Business.ohwctqyt61.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.ibjgxkahfu.dll → MindExecution.Plugins.Concept.c6i6qf13sh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.q92uq1o4e5.dll → MindExecution.Plugins.Directory.zh2sduii1b.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.l291yoyxds.dll → MindExecution.Plugins.PlanMaster.nbp5o2qy9j.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.jazcnpkde2.dll → MindExecution.Plugins.YouTube.4pptq3ahjb.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.f51tf15188.dll → MindExecution.Shared.hy5wdzjbso.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.3crklrc2je.dll → MindExecution.Web.pv02dm9gbq.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/service-worker-assets.js +26 -26
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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.kzbcbkmn27.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.3crklrc2je.dll → MindExecution.Web.pv02dm9gbq.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-3FUkDjoFXhBHfHpabEoqM/v9NhxMuNV3Q3y8RI6lBcQ=",
|
|
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.c6i6qf13sh.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.zh2sduii1b.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.nbp5o2qy9j.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.4pptq3ahjb.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.hy5wdzjbso.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.pv02dm9gbq.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.c6i6qf13sh.dll": "sha256-fJjnhANvq6rUWmJ+d56wpTyw6LGtSRqOcM1f/zNHlQg=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.nbp5o2qy9j.dll": "sha256-c48RbfELs40PN7ZaRNqST8hnGeVCwlJpuH+1t/oXVi0=",
|
|
284
|
+
"MindExecution.Shared.hy5wdzjbso.dll": "sha256-KW//Ws7+lIksLLyN1Nk3HAvZORxIaLLqPOuSxHZIY9M=",
|
|
285
|
+
"MindExecution.Web.pv02dm9gbq.dll": "sha256-9UWnFfFIgos5DjRzkS5D/7kheNBsq8gcwyOSgdcE/RQ="
|
|
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.4pptq3ahjb.dll": "sha256-qLI4iySHmtqnMQh6dOHoQ1Fa5T4qZGngqWeiwQmLnDg="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "yVkbjtjx",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -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-fJjnhANvq6rUWmJ+d56wpTyw6LGtSRqOcM1f/zNHlQg=",
|
|
462
|
+
"url": "_framework/MindExecution.Plugins.Concept.c6i6qf13sh.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-c48RbfELs40PN7ZaRNqST8hnGeVCwlJpuH+1t/oXVi0=",
|
|
470
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.nbp5o2qy9j.dll"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
|
-
"hash": "sha256-
|
|
474
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
473
|
+
"hash": "sha256-qLI4iySHmtqnMQh6dOHoQ1Fa5T4qZGngqWeiwQmLnDg=",
|
|
474
|
+
"url": "_framework/MindExecution.Plugins.YouTube.4pptq3ahjb.dll"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
|
-
"hash": "sha256-
|
|
478
|
-
"url": "_framework/MindExecution.Shared.
|
|
477
|
+
"hash": "sha256-KW//Ws7+lIksLLyN1Nk3HAvZORxIaLLqPOuSxHZIY9M=",
|
|
478
|
+
"url": "_framework/MindExecution.Shared.hy5wdzjbso.dll"
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
|
-
"hash": "sha256-
|
|
482
|
-
"url": "_framework/MindExecution.Web.
|
|
481
|
+
"hash": "sha256-9UWnFfFIgos5DjRzkS5D/7kheNBsq8gcwyOSgdcE/RQ=",
|
|
482
|
+
"url": "_framework/MindExecution.Web.pv02dm9gbq.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-OZT8jxhZ1TeCNMN6PQUJ8kShuRiwukCL4B9WvEPnmg0=",
|
|
802
802
|
"url": "_framework/blazor.boot.json"
|
|
803
803
|
},
|
|
804
804
|
{
|