@mindexec/cli 0.2.411 → 0.2.413
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +2 -30
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +4 -11
- package/wwwroot/_framework/{MindExecution.Core.v3wmxuk7qp.dll → MindExecution.Core.fi1okngj1v.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.kx4xhfncsj.dll → MindExecution.Kernel.88cfrq3n6f.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.1zm6aw94og.dll → MindExecution.Plugins.Admin.j8r53ny1yk.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.aundh2fuh7.dll → MindExecution.Plugins.Business.dxnr51rpko.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.pp0hp35q6g.dll → MindExecution.Plugins.Concept.crknebife8.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.askhe4ifrt.dll → MindExecution.Plugins.Directory.8on0qz60kp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.4fq8s1zuht.dll → MindExecution.Plugins.PlanMaster.nf8ay9xgix.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.1ekzvomyd2.dll → MindExecution.Plugins.YouTube.0pgznxiz2o.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.ndzddktvwm.dll → MindExecution.Shared.cksmc2e0pm.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.2dukgu5xqw.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +26 -26
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Web.ptfprazlfv.dll +0 -0
package/package.json
CHANGED
|
@@ -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 = '20260628-generated-image-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260628-generated-image-normal-pipeline-v847';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -1429,27 +1429,6 @@
|
|
|
1429
1429
|
}
|
|
1430
1430
|
}
|
|
1431
1431
|
|
|
1432
|
-
function isGeneratedCssImageNode(nodeModel) {
|
|
1433
|
-
if (!nodeModel) return false;
|
|
1434
|
-
if (window.MindMapNodes?.isGeneratedImageNodeModel) {
|
|
1435
|
-
return window.MindMapNodes.isGeneratedImageNodeModel(nodeModel) === true;
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
const contentTypeLower = String(nodeModel?.contentType ?? nodeModel?.ContentType ?? '').toLowerCase();
|
|
1439
|
-
if (contentTypeLower !== 'image') return false;
|
|
1440
|
-
|
|
1441
|
-
const metadata = getCssMediaMetadata(nodeModel);
|
|
1442
|
-
const provider = String(metadata?.ImageGenerationProvider || metadata?.imageGenerationProvider || '').trim();
|
|
1443
|
-
const operation = String(metadata?.RequestedMediaOperation || metadata?.requestedMediaOperation || '').trim().toLowerCase();
|
|
1444
|
-
return !!provider ||
|
|
1445
|
-
!!(metadata?.GeneratedImageSourceWidth || metadata?.generatedImageSourceWidth) ||
|
|
1446
|
-
!!(metadata?.GeneratedImageSourceHeight || metadata?.generatedImageSourceHeight) ||
|
|
1447
|
-
!!(metadata?.CodexImageQuality || metadata?.codexImageQuality) ||
|
|
1448
|
-
operation === 'text2image' ||
|
|
1449
|
-
operation === 'image2image' ||
|
|
1450
|
-
operation === 'inpaint';
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
1432
|
function isAnimatedGifCssMediaUrl(url) {
|
|
1454
1433
|
const normalized = normalizeCssMediaUrl(url);
|
|
1455
1434
|
if (!normalized) return false;
|
|
@@ -1725,12 +1704,6 @@
|
|
|
1725
1704
|
return responseUrl || originalUrl;
|
|
1726
1705
|
}
|
|
1727
1706
|
|
|
1728
|
-
if (isGeneratedCssImageNode(nodeModel)) {
|
|
1729
|
-
const directOriginalUrl = isDirectCssMediaUrl(originalUrl) ? originalUrl : '';
|
|
1730
|
-
const responseFullResUrl = responseUrl && !isThumbnailCssMediaUrl(responseUrl) ? responseUrl : '';
|
|
1731
|
-
return directOriginalUrl || responseFullResUrl || previewUrl || originalUrl;
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
1707
|
return previewUrl || responseUrl || originalUrl;
|
|
1735
1708
|
}
|
|
1736
1709
|
|
|
@@ -4087,9 +4060,8 @@
|
|
|
4087
4060
|
function maybeResolveOriginalCssImageSource(mediaEl, nodeModel, contentTypeLower, options = {}) {
|
|
4088
4061
|
if (!mediaEl || contentTypeLower !== 'image') return;
|
|
4089
4062
|
if (options.bypassPreviewHold !== true && shouldPreferCssImagePreviewSource(nodeModel)) return;
|
|
4090
|
-
const forceGeneratedOriginal = isGeneratedCssImageNode(nodeModel);
|
|
4091
4063
|
const forceAnimatedGifOriginal = isAnimatedGifCssImageNode(nodeModel);
|
|
4092
|
-
if (options.forceOriginal !== true && !
|
|
4064
|
+
if (options.forceOriginal !== true && !forceAnimatedGifOriginal && !shouldPromoteCssImageOriginal(nodeModel)) return;
|
|
4093
4065
|
|
|
4094
4066
|
const assetUrls = window.MindMapNodes?.getNodeImageAssetUrls?.(nodeModel) || null;
|
|
4095
4067
|
const metadata = getCssMediaMetadata(nodeModel);
|
|
@@ -4117,7 +4089,7 @@
|
|
|
4117
4089
|
}
|
|
4118
4090
|
return;
|
|
4119
4091
|
}
|
|
4120
|
-
if (originalUrl && !isDirectCssMediaUrl(originalUrl) &&
|
|
4092
|
+
if (originalUrl && !isDirectCssMediaUrl(originalUrl) && forceAnimatedGifOriginal) {
|
|
4121
4093
|
if (mediaEl.dataset.originalResolveAttempted === '1') return;
|
|
4122
4094
|
mediaEl.dataset.originalResolveAttempted = '1';
|
|
4123
4095
|
void tryRefreshCssMediaSource(mediaEl, nodeModel, contentTypeLower);
|
|
@@ -1699,23 +1699,17 @@
|
|
|
1699
1699
|
''
|
|
1700
1700
|
);
|
|
1701
1701
|
const missingAssetUrl = normalizeImageAssetUrl(metadata?.MissingAssetUrl || '');
|
|
1702
|
-
const isGeneratedImageNode = isGeneratedImageNodeModel(nodeModel);
|
|
1703
1702
|
const isAnimatedGif = isAnimatedGifImageNodeModel(nodeModel);
|
|
1704
1703
|
const responseFullResUrl = isImageContent && canUseAsFullResImageUrl(responseUrl) ? responseUrl : '';
|
|
1705
1704
|
const missingFullResUrl = canUseAsFullResImageUrl(missingAssetUrl) ? missingAssetUrl : '';
|
|
1706
1705
|
const mediaPreviewUrl = isAnimatedGif ? '' : (thumbnailUrl || snapshotUrl || previewImageUrl);
|
|
1707
1706
|
const responsePreviewUrl = isImageContent && !isAnimatedGif ? responseUrl : '';
|
|
1708
|
-
const generatedFullResUrl = originalUrl || originalPath || responseFullResUrl || missingFullResUrl;
|
|
1709
1707
|
const fullResUrl = isImageContent
|
|
1710
|
-
? (
|
|
1711
|
-
? generatedFullResUrl
|
|
1712
|
-
: (originalUrl || originalPath || responseFullResUrl || missingFullResUrl))
|
|
1708
|
+
? (originalUrl || originalPath || responseFullResUrl || missingFullResUrl)
|
|
1713
1709
|
: (originalUrl || originalPath || snapshotUrl || previewImageUrl || thumbnailUrl || missingFullResUrl);
|
|
1714
1710
|
const previewUrl = isAnimatedGif
|
|
1715
1711
|
? (fullResUrl || responseUrl || originalPath || originalUrl || missingAssetUrl)
|
|
1716
|
-
: (
|
|
1717
|
-
? (mediaPreviewUrl || originalUrl || originalPath || responsePreviewUrl || missingAssetUrl)
|
|
1718
|
-
: (mediaPreviewUrl || responsePreviewUrl || originalPath || originalUrl || missingAssetUrl));
|
|
1712
|
+
: (mediaPreviewUrl || responsePreviewUrl || originalPath || originalUrl || missingAssetUrl);
|
|
1719
1713
|
|
|
1720
1714
|
return {
|
|
1721
1715
|
responseUrl,
|
|
@@ -1866,14 +1860,13 @@
|
|
|
1866
1860
|
return;
|
|
1867
1861
|
}
|
|
1868
1862
|
|
|
1869
|
-
|
|
1870
|
-
if (options.preferOriginal !== true && !isGeneratedImageNode) {
|
|
1863
|
+
if (options.preferOriginal !== true) {
|
|
1871
1864
|
ensureNodeImageUsesPreviewResponse(nodeModel);
|
|
1872
1865
|
}
|
|
1873
1866
|
|
|
1874
1867
|
const width = Number(bodyMesh.geometry?.parameters?.width || nodeModel.width || 300);
|
|
1875
1868
|
const height = Number(bodyMesh.geometry?.parameters?.height || nodeModel.height || 200);
|
|
1876
|
-
const preferOriginal = options.preferOriginal === true
|
|
1869
|
+
const preferOriginal = options.preferOriginal === true;
|
|
1877
1870
|
const assetUrls = getNodeImageAssetUrls(nodeModel);
|
|
1878
1871
|
bodyMesh.userData ??= {};
|
|
1879
1872
|
const now = performance.now();
|
package/wwwroot/_framework/{MindExecution.Core.v3wmxuk7qp.dll → MindExecution.Core.fi1okngj1v.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-tTR90qstlPJ54oiDAhOSXEDdeuPw4IA4Y0qk/1eDuiQ=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -123,16 +123,16 @@
|
|
|
123
123
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
124
124
|
"netstandard.yvr3prsx0x.dll": "netstandard.dll",
|
|
125
125
|
"System.Private.CoreLib.c1dbswx1b2.dll": "System.Private.CoreLib.dll",
|
|
126
|
-
"MindExecution.Core.
|
|
127
|
-
"MindExecution.Kernel.
|
|
128
|
-
"MindExecution.Plugins.Admin.
|
|
129
|
-
"MindExecution.Plugins.Business.
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
131
|
-
"MindExecution.Plugins.Directory.
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
126
|
+
"MindExecution.Core.fi1okngj1v.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.88cfrq3n6f.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.j8r53ny1yk.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.dxnr51rpko.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.crknebife8.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.8on0qz60kp.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.nf8ay9xgix.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.0pgznxiz2o.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.cksmc2e0pm.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.2dukgu5xqw.dll": "MindExecution.Web.dll",
|
|
136
136
|
"dotnet.js": "dotnet.js",
|
|
137
137
|
"dotnet.native.qc8g39g30v.js": "dotnet.native.js",
|
|
138
138
|
"dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
|
|
@@ -278,18 +278,18 @@
|
|
|
278
278
|
"System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
|
|
279
279
|
"System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
|
|
280
280
|
"netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
|
|
281
|
-
"MindExecution.Core.
|
|
282
|
-
"MindExecution.Kernel.
|
|
283
|
-
"MindExecution.Plugins.Business.
|
|
284
|
-
"MindExecution.Plugins.Concept.
|
|
285
|
-
"MindExecution.Plugins.PlanMaster.
|
|
286
|
-
"MindExecution.Shared.
|
|
287
|
-
"MindExecution.Web.
|
|
281
|
+
"MindExecution.Core.fi1okngj1v.dll": "sha256-py0z7lRYqGUGvMK7xf5miyo6UOl0U06bpwbyfUp+4pg=",
|
|
282
|
+
"MindExecution.Kernel.88cfrq3n6f.dll": "sha256-qH6qMdk1bIgHvXk+TvMBc9Feyj0z9WCowTGyaOqGSEo=",
|
|
283
|
+
"MindExecution.Plugins.Business.dxnr51rpko.dll": "sha256-H5VyHfSyEQSAusny8+CkdnSKa2kAnqr2j+FhVBy0ePU=",
|
|
284
|
+
"MindExecution.Plugins.Concept.crknebife8.dll": "sha256-KH2AckoxE9L3SrHFBBfYCW5qOf62eibv9R/fDiq0s3E=",
|
|
285
|
+
"MindExecution.Plugins.PlanMaster.nf8ay9xgix.dll": "sha256-zYCWCU32Jk7ZiPbEPLzOfouhmVqK98eQ1cYBe2301JM=",
|
|
286
|
+
"MindExecution.Shared.cksmc2e0pm.dll": "sha256-HO7Mv+CTuMcl35yIvkUfhDfCuh8GlEhafMfvNxbKvMw=",
|
|
287
|
+
"MindExecution.Web.2dukgu5xqw.dll": "sha256-SlFcAedQ0GCcP8kyylzvrLIoonChLLFZnMXcrnHXFxw="
|
|
288
288
|
},
|
|
289
289
|
"lazyAssembly": {
|
|
290
|
-
"MindExecution.Plugins.Admin.
|
|
291
|
-
"MindExecution.Plugins.Directory.
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
290
|
+
"MindExecution.Plugins.Admin.j8r53ny1yk.dll": "sha256-IxjG4k/zJiUqItA1VJm4FISwJ1CYLo+xAXJUTUXsQKc=",
|
|
291
|
+
"MindExecution.Plugins.Directory.8on0qz60kp.dll": "sha256-KGJuM3/sdVfJY9jy978C1aZymI7OJIEeHv9OPGlHwtg=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.0pgznxiz2o.dll": "sha256-RLrJwYGMQxAa7CkkXwLyZPjXwRssX1x2pS/WGIIQXmI="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260628-generated-image-
|
|
582
|
+
const scriptVersion = '20260628-generated-image-normal-pipeline-v847';
|
|
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": "A8OIIchs",
|
|
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-V8z76q7kPYVfmcun+JthuuZfSuIPSfx0PY+up+BySwk=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-4sfJbSWKvZxLh0VUOQ6EQ0slzBRC4bYhCPH63Ljko2w=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
"hash": "sha256-
|
|
137
|
+
"hash": "sha256-npsiPOxC7d5kaKuyJjjx9zNtxR/bcbokVWsCeNmJKJw=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -406,44 +406,44 @@
|
|
|
406
406
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
407
407
|
},
|
|
408
408
|
{
|
|
409
|
-
"hash": "sha256-
|
|
410
|
-
"url": "_framework/MindExecution.Core.
|
|
409
|
+
"hash": "sha256-py0z7lRYqGUGvMK7xf5miyo6UOl0U06bpwbyfUp+4pg=",
|
|
410
|
+
"url": "_framework/MindExecution.Core.fi1okngj1v.dll"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
|
-
"hash": "sha256-
|
|
414
|
-
"url": "_framework/MindExecution.Kernel.
|
|
413
|
+
"hash": "sha256-qH6qMdk1bIgHvXk+TvMBc9Feyj0z9WCowTGyaOqGSEo=",
|
|
414
|
+
"url": "_framework/MindExecution.Kernel.88cfrq3n6f.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
417
|
+
"hash": "sha256-IxjG4k/zJiUqItA1VJm4FISwJ1CYLo+xAXJUTUXsQKc=",
|
|
418
|
+
"url": "_framework/MindExecution.Plugins.Admin.j8r53ny1yk.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
421
|
+
"hash": "sha256-H5VyHfSyEQSAusny8+CkdnSKa2kAnqr2j+FhVBy0ePU=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Business.dxnr51rpko.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
425
|
+
"hash": "sha256-KH2AckoxE9L3SrHFBBfYCW5qOf62eibv9R/fDiq0s3E=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Concept.crknebife8.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
429
|
+
"hash": "sha256-KGJuM3/sdVfJY9jy978C1aZymI7OJIEeHv9OPGlHwtg=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Directory.8on0qz60kp.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
433
|
+
"hash": "sha256-zYCWCU32Jk7ZiPbEPLzOfouhmVqK98eQ1cYBe2301JM=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.nf8ay9xgix.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
437
|
+
"hash": "sha256-RLrJwYGMQxAa7CkkXwLyZPjXwRssX1x2pS/WGIIQXmI=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.YouTube.0pgznxiz2o.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Shared.
|
|
441
|
+
"hash": "sha256-HO7Mv+CTuMcl35yIvkUfhDfCuh8GlEhafMfvNxbKvMw=",
|
|
442
|
+
"url": "_framework/MindExecution.Shared.cksmc2e0pm.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Web.
|
|
445
|
+
"hash": "sha256-SlFcAedQ0GCcP8kyylzvrLIoonChLLFZnMXcrnHXFxw=",
|
|
446
|
+
"url": "_framework/MindExecution.Web.2dukgu5xqw.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -766,7 +766,7 @@
|
|
|
766
766
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
767
767
|
},
|
|
768
768
|
{
|
|
769
|
-
"hash": "sha256-
|
|
769
|
+
"hash": "sha256-hsYae0ft/oXd0SqdjHM2fpzVCM+yL42XOF62U+Eugfk=",
|
|
770
770
|
"url": "_framework/blazor.boot.json"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
"url": "icon-512.png"
|
|
827
827
|
},
|
|
828
828
|
{
|
|
829
|
-
"hash": "sha256-
|
|
829
|
+
"hash": "sha256-8SlWrdSrhpdROmnutaJ9AatEND1qDXB6PdNSCRI3mnc=",
|
|
830
830
|
"url": "index.html"
|
|
831
831
|
},
|
|
832
832
|
{
|
|
Binary file
|