@mindexec/cli 0.2.110 → 0.2.112
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-hub.js +3 -3
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +118 -26
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.y5mxuwyn3t.dll → MindExecution.Plugins.Concept.e1j4pkp0uf.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.c1vyy1ch1t.dll → MindExecution.Plugins.PlanMaster.yfeqppy3kf.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.hezx1pv0ln.dll → MindExecution.Plugins.YouTube.vzjd4jwanl.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.ergr5legth.dll → MindExecution.Shared.6xjhkrpfwd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.wagtdqojjf.dll → MindExecution.Web.eo8m63n3u0.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +11 -11
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +15 -15
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
package/remote-hub.js
CHANGED
|
@@ -15,11 +15,11 @@ const MAX_AGENT_TASK_CHARS = 4000;
|
|
|
15
15
|
const MAX_AGENT_TASK_RESULT_CHARS = 3000;
|
|
16
16
|
const RECENT_TASK_LIMIT = 12;
|
|
17
17
|
const RECENT_TASK_BATCH_LIMIT = 16;
|
|
18
|
-
const RECENT_FRAME_CACHE_TTL_MS =
|
|
18
|
+
const RECENT_FRAME_CACHE_TTL_MS = 12000;
|
|
19
19
|
const RECENT_THUMBNAIL_FRAME_CACHE_LIMIT = 4;
|
|
20
|
-
const RECENT_LIVE_FRAME_CACHE_LIMIT =
|
|
20
|
+
const RECENT_LIVE_FRAME_CACHE_LIMIT = 80;
|
|
21
21
|
const RECENT_THUMBNAIL_FRAME_CACHE_MAX_BYTES = 3 * 1024 * 1024;
|
|
22
|
-
const RECENT_LIVE_FRAME_CACHE_MAX_BYTES =
|
|
22
|
+
const RECENT_LIVE_FRAME_CACHE_MAX_BYTES = 24 * 1024 * 1024;
|
|
23
23
|
const REMOTE_PROTOCOL_VERSION = 1;
|
|
24
24
|
const MAX_SYNTHETIC_DEVICES = 1000;
|
|
25
25
|
const DEFAULT_HOST_TARGET_LEASE_MS = 30000;
|
|
@@ -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 = '20260616-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260616-remote-live-img-preload-v570';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -13594,9 +13594,18 @@
|
|
|
13594
13594
|
|
|
13595
13595
|
function isRemoteFleetFrameSource(value) {
|
|
13596
13596
|
const source = String(value || '').trim();
|
|
13597
|
-
|
|
13598
|
-
||
|
|
13599
|
-
|
|
13597
|
+
if (/^data:image\/(png|jpe?g|webp|svg\+xml);base64,/i.test(source)
|
|
13598
|
+
|| /^\/api\/remote\//i.test(source)) {
|
|
13599
|
+
return true;
|
|
13600
|
+
}
|
|
13601
|
+
|
|
13602
|
+
try {
|
|
13603
|
+
const url = new URL(source, window.location?.origin || 'http://localhost');
|
|
13604
|
+
return /^https?:$/i.test(url.protocol)
|
|
13605
|
+
&& /^\/api\/remote\//i.test(url.pathname);
|
|
13606
|
+
} catch {
|
|
13607
|
+
return false;
|
|
13608
|
+
}
|
|
13600
13609
|
}
|
|
13601
13610
|
|
|
13602
13611
|
function getRemoteFleetFrameSource(device, frameKind) {
|
|
@@ -13946,9 +13955,9 @@
|
|
|
13946
13955
|
}
|
|
13947
13956
|
|
|
13948
13957
|
if (comparePending) {
|
|
13949
|
-
const pendingUrl = String(preview.dataset.remoteFleetPendingFrameUrl || '');
|
|
13950
|
-
const pendingKind = String(preview.dataset.remoteFleetPendingFrameKind || '').toLowerCase();
|
|
13951
|
-
const pendingSeq = Number(preview.dataset.remoteFleetPendingFrameSeq || '0');
|
|
13958
|
+
const pendingUrl = String(preview.dataset.remoteFleetPendingImageUrl || preview.dataset.remoteFleetPendingFrameUrl || '');
|
|
13959
|
+
const pendingKind = String(preview.dataset.remoteFleetPendingImageKind || preview.dataset.remoteFleetPendingFrameKind || '').toLowerCase();
|
|
13960
|
+
const pendingSeq = Number(preview.dataset.remoteFleetPendingImageSeq || preview.dataset.remoteFleetPendingFrameSeq || '0');
|
|
13952
13961
|
if (pendingUrl) {
|
|
13953
13962
|
const samePending = pendingKind === frame.kind
|
|
13954
13963
|
&& pendingSeq === nextSeq
|
|
@@ -14257,35 +14266,116 @@
|
|
|
14257
14266
|
return true;
|
|
14258
14267
|
}
|
|
14259
14268
|
|
|
14260
|
-
function
|
|
14261
|
-
if (
|
|
14262
|
-
|
|
14263
|
-
|
|
14264
|
-
}
|
|
14269
|
+
function clearRemoteFleetPendingImageDataset(preview, frame) {
|
|
14270
|
+
if (!preview) {
|
|
14271
|
+
return;
|
|
14272
|
+
}
|
|
14265
14273
|
|
|
14266
|
-
|
|
14267
|
-
|
|
14268
|
-
|
|
14269
|
-
|
|
14274
|
+
if (!frame
|
|
14275
|
+
|| getRemoteFleetFrameIdentity(preview._remoteFleetPendingImageFrame) === getRemoteFleetFrameIdentity(frame)) {
|
|
14276
|
+
delete preview.dataset.remoteFleetPendingImageKind;
|
|
14277
|
+
delete preview.dataset.remoteFleetPendingImageSeq;
|
|
14278
|
+
delete preview.dataset.remoteFleetPendingImageUrl;
|
|
14279
|
+
preview._remoteFleetPendingImageFrame = null;
|
|
14280
|
+
}
|
|
14281
|
+
}
|
|
14270
14282
|
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14283
|
+
function processRemoteFleetImageSwapQueue(preview, image) {
|
|
14284
|
+
if (!preview || !image || preview._remoteFleetImageLoaderActive === true) {
|
|
14285
|
+
return;
|
|
14286
|
+
}
|
|
14275
14287
|
|
|
14276
|
-
|
|
14277
|
-
|
|
14288
|
+
const frame = preview._remoteFleetPendingImageFrame;
|
|
14289
|
+
if (!frame || !isRemoteFleetFrameSource(frame.frameUrl)) {
|
|
14290
|
+
clearRemoteFleetPendingImageDataset(preview, frame);
|
|
14291
|
+
return;
|
|
14292
|
+
}
|
|
14293
|
+
|
|
14294
|
+
preview._remoteFleetImageLoaderActive = true;
|
|
14295
|
+
const frameIdentity = getRemoteFleetFrameIdentity(frame);
|
|
14296
|
+
const timeoutMs = Math.max(1500, getRemoteFleetFrameDecodeTimeoutMs(frame));
|
|
14297
|
+
let settled = false;
|
|
14298
|
+
let timeout = null;
|
|
14299
|
+
const loader = new Image();
|
|
14300
|
+
|
|
14301
|
+
const finish = loaded => {
|
|
14302
|
+
if (settled) return;
|
|
14303
|
+
settled = true;
|
|
14304
|
+
if (timeout) {
|
|
14305
|
+
clearTimeout(timeout);
|
|
14306
|
+
timeout = null;
|
|
14307
|
+
}
|
|
14308
|
+
|
|
14309
|
+
const currentPending = preview._remoteFleetPendingImageFrame;
|
|
14310
|
+
const stillLatest = getRemoteFleetFrameIdentity(currentPending) === frameIdentity;
|
|
14311
|
+
let committed = false;
|
|
14312
|
+
if (loaded && stillLatest && document.body.contains(preview)) {
|
|
14313
|
+
committed = commitRemoteFleetFrameToPreview(preview, image, frame);
|
|
14278
14314
|
window.RuntimeTrace?.emit?.('remote.frame.uiPatched', {
|
|
14279
|
-
count: 1,
|
|
14315
|
+
count: committed ? 1 : 0,
|
|
14280
14316
|
kind: frame.kind,
|
|
14281
14317
|
seq: frame.frameSeq,
|
|
14282
|
-
surface: 'img-
|
|
14318
|
+
surface: 'img-preload',
|
|
14283
14319
|
contentHash: frame.contentHash || '',
|
|
14284
14320
|
sameContentStreak: Number(frame.sameContentStreak || 0) || 0,
|
|
14285
14321
|
captureMs: Number(frame.captureMs || 0) || 0
|
|
14286
14322
|
});
|
|
14323
|
+
} else if (!loaded) {
|
|
14324
|
+
window.RuntimeTrace?.emit?.('remote.frame.imageLoadFailed', {
|
|
14325
|
+
kind: frame.kind,
|
|
14326
|
+
seq: frame.frameSeq,
|
|
14327
|
+
url: frame.frameUrl
|
|
14328
|
+
});
|
|
14329
|
+
}
|
|
14330
|
+
|
|
14331
|
+
if (stillLatest) {
|
|
14332
|
+
clearRemoteFleetPendingImageDataset(preview, frame);
|
|
14333
|
+
}
|
|
14334
|
+
|
|
14335
|
+
preview._remoteFleetImageLoaderActive = false;
|
|
14336
|
+
if (preview._remoteFleetPendingImageFrame) {
|
|
14337
|
+
processRemoteFleetImageSwapQueue(preview, image);
|
|
14287
14338
|
}
|
|
14288
|
-
|
|
14339
|
+
};
|
|
14340
|
+
|
|
14341
|
+
timeout = setTimeout(() => finish(false), timeoutMs);
|
|
14342
|
+
loader.decoding = 'async';
|
|
14343
|
+
loader.onload = () => {
|
|
14344
|
+
const decoded = typeof loader.decode === 'function'
|
|
14345
|
+
? loader.decode().catch(() => undefined)
|
|
14346
|
+
: Promise.resolve();
|
|
14347
|
+
decoded.then(() => finish(true));
|
|
14348
|
+
};
|
|
14349
|
+
loader.onerror = () => finish(false);
|
|
14350
|
+
loader.src = frame.frameUrl;
|
|
14351
|
+
}
|
|
14352
|
+
|
|
14353
|
+
function queueRemoteFleetImageSwap(preview, frame) {
|
|
14354
|
+
if (!preview || !frame || !isRemoteFleetFrameNewerForPreview(preview, frame, true)) {
|
|
14355
|
+
return false;
|
|
14356
|
+
}
|
|
14357
|
+
|
|
14358
|
+
const image = ensureRemoteFleetFrameImage(preview, frame);
|
|
14359
|
+
if (!image) {
|
|
14360
|
+
return false;
|
|
14361
|
+
}
|
|
14362
|
+
|
|
14363
|
+
const nextFrame = cloneRemoteFleetFramePatch(frame);
|
|
14364
|
+
preview._remoteFleetPendingImageFrame = nextFrame;
|
|
14365
|
+
preview.dataset.remoteFleetPendingImageKind = nextFrame.kind;
|
|
14366
|
+
preview.dataset.remoteFleetPendingImageSeq = String(nextFrame.frameSeq || 0);
|
|
14367
|
+
preview.dataset.remoteFleetPendingImageUrl = nextFrame.frameUrl;
|
|
14368
|
+
processRemoteFleetImageSwapQueue(preview, image);
|
|
14369
|
+
return true;
|
|
14370
|
+
}
|
|
14371
|
+
|
|
14372
|
+
function applyRemoteFleetFramePatchToPreview(preview, frame) {
|
|
14373
|
+
if (String(frame?.kind || '').toLowerCase() === 'live') {
|
|
14374
|
+
preview._remoteFleetPendingFrame = null;
|
|
14375
|
+
delete preview.dataset.remoteFleetPendingFrameKind;
|
|
14376
|
+
delete preview.dataset.remoteFleetPendingFrameSeq;
|
|
14377
|
+
delete preview.dataset.remoteFleetPendingFrameUrl;
|
|
14378
|
+
return queueRemoteFleetImageSwap(preview, frame);
|
|
14289
14379
|
}
|
|
14290
14380
|
|
|
14291
14381
|
return queueRemoteFleetFramePaint(preview, frame);
|
|
@@ -14343,8 +14433,10 @@
|
|
|
14343
14433
|
lastTick = timestamp;
|
|
14344
14434
|
bodyView._remoteFleetFrameRefreshInFlight = true;
|
|
14345
14435
|
Promise.resolve(refreshCallback())
|
|
14346
|
-
.catch(
|
|
14347
|
-
|
|
14436
|
+
.catch(error => {
|
|
14437
|
+
window.RuntimeTrace?.emit?.('remote.frame.refreshFailed', {
|
|
14438
|
+
error: error?.message || String(error || '')
|
|
14439
|
+
});
|
|
14348
14440
|
})
|
|
14349
14441
|
.finally(() => {
|
|
14350
14442
|
bodyView._remoteFleetFrameRefreshInFlight = false;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.wagtdqojjf.dll → MindExecution.Web.eo8m63n3u0.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-bvM7vg7AblT/seEKoL+4Phy9dck9BgqkamjNDnfDpwg=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"MindExecution.Kernel.pbzp3jfync.dll": "MindExecution.Kernel.dll",
|
|
128
128
|
"MindExecution.Plugins.Admin.gxzwlji1cf.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
129
|
"MindExecution.Plugins.Business.vtaey8c59y.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
+
"MindExecution.Plugins.Concept.e1j4pkp0uf.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
131
|
"MindExecution.Plugins.Directory.zc8ffaoknd.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.yfeqppy3kf.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.vzjd4jwanl.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.6xjhkrpfwd.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.eo8m63n3u0.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",
|
|
@@ -280,16 +280,16 @@
|
|
|
280
280
|
"netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
|
|
281
281
|
"MindExecution.Core.fc9cjbjplq.dll": "sha256-TymUFwryFLdbCYy2U5qdgE2ZV1yHaLR9bgyrmx6Tcp0=",
|
|
282
282
|
"MindExecution.Kernel.pbzp3jfync.dll": "sha256-Ff6WHyLD39V0fEjUiQlxX9Y+edssyTH+7T4zfBdj3s0=",
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
283
|
+
"MindExecution.Plugins.Concept.e1j4pkp0uf.dll": "sha256-nq1Uv/H+JSyGBzGym6AKbVMSa53sktNACog3+JqITI4=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.yfeqppy3kf.dll": "sha256-YpcXMAmctAWAbfzFrfcYmk3sOo7j8hZGGKsrv4VgqUs=",
|
|
285
|
+
"MindExecution.Shared.6xjhkrpfwd.dll": "sha256-5lCRRlgeky/uSmxPrO5acuFLOjfRphWQwSyVY5E1Tq8=",
|
|
286
|
+
"MindExecution.Web.eo8m63n3u0.dll": "sha256-kkgzLA1bgfPC2NiwMUdDwfXy+BCl672u6ZTZiqhY/qc="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
289
|
"MindExecution.Plugins.Admin.gxzwlji1cf.dll": "sha256-5D5B2ZuUMj46zBMgH2dRA7CbQf++uukMPrEliFLuZWs=",
|
|
290
290
|
"MindExecution.Plugins.Business.vtaey8c59y.dll": "sha256-rU9MzRRmHuj0/IluV1dvE6x3aRCK/DA4DWKy1DO4VVg=",
|
|
291
291
|
"MindExecution.Plugins.Directory.zc8ffaoknd.dll": "sha256-Ey/HajaVuBxB/Ou4qsM70nhAZBoODeCENzG1J/uEsxs=",
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
292
|
+
"MindExecution.Plugins.YouTube.vzjd4jwanl.dll": "sha256-e9Z1x+BJvcFG38RiQW4jiGg3wFvgH6TBjYIDXPBxOPk="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<title>MindExec | Run your ideas as AI task graphs</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-remote-live-img-preload-v570" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-remote-live-img-preload-v570" />
|
|
12
12
|
<!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?꿎뼯??-->
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260616-
|
|
582
|
+
const scriptVersion = '20260616-remote-live-img-preload-v570';
|
|
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": "xXFM+YC6",
|
|
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-nVQzxZ7EE6TbmugAy2X9Wy3RXenA7EAtfQYmceKyAeY=",
|
|
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-u989dTMrJLCKW1Xnft/fCFSx288cqjSVohBi8jhuvZs=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -426,28 +426,28 @@
|
|
|
426
426
|
"url": "_framework/MindExecution.Plugins.Business.vtaey8c59y.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-nq1Uv/H+JSyGBzGym6AKbVMSa53sktNACog3+JqITI4=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.e1j4pkp0uf.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"hash": "sha256-Ey/HajaVuBxB/Ou4qsM70nhAZBoODeCENzG1J/uEsxs=",
|
|
434
434
|
"url": "_framework/MindExecution.Plugins.Directory.zc8ffaoknd.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-YpcXMAmctAWAbfzFrfcYmk3sOo7j8hZGGKsrv4VgqUs=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.yfeqppy3kf.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-e9Z1x+BJvcFG38RiQW4jiGg3wFvgH6TBjYIDXPBxOPk=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.vzjd4jwanl.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-5lCRRlgeky/uSmxPrO5acuFLOjfRphWQwSyVY5E1Tq8=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.6xjhkrpfwd.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-kkgzLA1bgfPC2NiwMUdDwfXy+BCl672u6ZTZiqhY/qc=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.eo8m63n3u0.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-BonMttrGCHvOz6hIMPLexN5XuSfRwKz3bAhpBPwosIQ=",
|
|
774
774
|
"url": "_framework/blazor.boot.json"
|
|
775
775
|
},
|
|
776
776
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-ihPB4Vhq6CXrTD2TzgIc+CiL+St4Om3bQAAHhqtWuqU=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|