@mindexec/cli 0.2.97 → 0.2.98
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-css3d-manager.js +133 -16
- package/wwwroot/_framework/{MindExecution.Core.eyl4o4qxg8.dll → MindExecution.Core.cdplo34sb2.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.hxyapaztgr.dll → MindExecution.Kernel.7k773jan4j.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.7kemovesa7.dll → MindExecution.Plugins.Admin.nr5ioavpvn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.t370in2g1b.dll → MindExecution.Plugins.Business.qq63kom73x.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.oqhv1116kb.dll → MindExecution.Plugins.Concept.y4ipk4t13u.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.0v80a0hi9m.dll → MindExecution.Plugins.Directory.u6p6pxpwxp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.hn5sfx4z2l.dll → MindExecution.Plugins.PlanMaster.3gd195fq5t.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.c8sc0tlc6o.dll → MindExecution.Plugins.YouTube.sb0cb9cans.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.osv9nbh3ym.dll → MindExecution.Shared.ib8s249hay.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.q1jwri2r1p.dll → MindExecution.Web.bfrevq2q4y.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +24 -24
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -12974,16 +12974,20 @@
|
|
|
12974
12974
|
}
|
|
12975
12975
|
|
|
12976
12976
|
const REMOTE_FLEET_MONITOR_REFRESH_MS = 10000;
|
|
12977
|
-
const REMOTE_FLEET_LIVE_REFRESH_MS =
|
|
12978
|
-
const
|
|
12977
|
+
const REMOTE_FLEET_LIVE_REFRESH_MS = 30000;
|
|
12978
|
+
const REMOTE_FLEET_FOCUSED_LIVE_FPS = 10;
|
|
12979
|
+
const REMOTE_FLEET_LIVE_FRAME_REFRESH_MS = Math.round(1000 / REMOTE_FLEET_FOCUSED_LIVE_FPS);
|
|
12979
12980
|
const REMOTE_FLEET_THUMBNAIL_FRAME_REFRESH_MS = 2000;
|
|
12980
12981
|
const REMOTE_FLEET_FRAME_CANVAS_MAX_DPR = 2;
|
|
12982
|
+
const REMOTE_FLEET_FRAME_BLOB_CACHE_MS = 10000;
|
|
12983
|
+
const REMOTE_FLEET_FRAME_BLOB_CACHE_LIMIT = 96;
|
|
12981
12984
|
const REMOTE_FLEET_TASK_FOLLOW_INITIAL_MS = 250;
|
|
12982
12985
|
const REMOTE_FLEET_TASK_FOLLOW_REFRESH_MS = 2000;
|
|
12983
12986
|
const REMOTE_FLEET_TASK_FOLLOW_MAX_TICKS = 60;
|
|
12984
12987
|
const REMOTE_FLEET_HOST_LEASE_REFRESH_MS = 10000;
|
|
12985
12988
|
const remoteFleetHostLeaseTimers = new Map();
|
|
12986
12989
|
const remoteFleetLocalHostTargets = new Map();
|
|
12990
|
+
const remoteFleetFrameBlobCache = new Map();
|
|
12987
12991
|
let activeRemoteFleetControlPopup = null;
|
|
12988
12992
|
|
|
12989
12993
|
function findRemoteFleetBodyByNodeId(nodeId) {
|
|
@@ -13206,6 +13210,10 @@
|
|
|
13206
13210
|
return getRemoteFleetDeviceField(device, 'aiAssistEnabled', 'AiAssistEnabled', false) === true;
|
|
13207
13211
|
}
|
|
13208
13212
|
|
|
13213
|
+
function isRemoteFleetLiveCapable(device) {
|
|
13214
|
+
return getRemoteFleetDeviceField(device, 'liveStreamEnabled', 'LiveStreamEnabled', false) === true;
|
|
13215
|
+
}
|
|
13216
|
+
|
|
13209
13217
|
function hasRemoteFleetThumbnail(device) {
|
|
13210
13218
|
return isRemoteFleetFrameSource(getRemoteFleetFrameSource(device, 'thumbnail'));
|
|
13211
13219
|
}
|
|
@@ -13440,15 +13448,41 @@
|
|
|
13440
13448
|
return null;
|
|
13441
13449
|
}
|
|
13442
13450
|
|
|
13443
|
-
const
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
|
|
13448
|
-
throw new Error(`remote-frame-fetch-${response.status}`);
|
|
13451
|
+
const now = typeof performance !== 'undefined' ? performance.now() : Date.now();
|
|
13452
|
+
for (const [key, entry] of remoteFleetFrameBlobCache) {
|
|
13453
|
+
if (!entry || entry.expiresAt <= now || remoteFleetFrameBlobCache.size > REMOTE_FLEET_FRAME_BLOB_CACHE_LIMIT) {
|
|
13454
|
+
remoteFleetFrameBlobCache.delete(key);
|
|
13455
|
+
}
|
|
13449
13456
|
}
|
|
13450
13457
|
|
|
13451
|
-
const
|
|
13458
|
+
const identity = getRemoteFleetFrameIdentity(frame);
|
|
13459
|
+
let entry = remoteFleetFrameBlobCache.get(identity);
|
|
13460
|
+
if (!entry) {
|
|
13461
|
+
const promise = fetch(frame.frameUrl, {
|
|
13462
|
+
cache: 'no-store',
|
|
13463
|
+
credentials: 'omit'
|
|
13464
|
+
})
|
|
13465
|
+
.then(response => {
|
|
13466
|
+
if (!response.ok) {
|
|
13467
|
+
throw new Error(`remote-frame-fetch-${response.status}`);
|
|
13468
|
+
}
|
|
13469
|
+
return response.blob();
|
|
13470
|
+
})
|
|
13471
|
+
.catch(error => {
|
|
13472
|
+
remoteFleetFrameBlobCache.delete(identity);
|
|
13473
|
+
throw error;
|
|
13474
|
+
});
|
|
13475
|
+
|
|
13476
|
+
entry = {
|
|
13477
|
+
promise,
|
|
13478
|
+
expiresAt: now + REMOTE_FLEET_FRAME_BLOB_CACHE_MS
|
|
13479
|
+
};
|
|
13480
|
+
remoteFleetFrameBlobCache.set(identity, entry);
|
|
13481
|
+
} else {
|
|
13482
|
+
entry.expiresAt = now + REMOTE_FLEET_FRAME_BLOB_CACHE_MS;
|
|
13483
|
+
}
|
|
13484
|
+
|
|
13485
|
+
const blob = await entry.promise;
|
|
13452
13486
|
return createImageBitmap(blob);
|
|
13453
13487
|
}
|
|
13454
13488
|
|
|
@@ -14620,7 +14654,7 @@
|
|
|
14620
14654
|
const taskEnabled = isRemoteFleetDeviceTaskCapable(device);
|
|
14621
14655
|
const aiAssistEnabled = isRemoteFleetDeviceAiCapable(device);
|
|
14622
14656
|
const thumbnailEnabled = isRemoteFleetThumbnailCapable(device);
|
|
14623
|
-
const liveStreamEnabled =
|
|
14657
|
+
const liveStreamEnabled = isRemoteFleetLiveCapable(device);
|
|
14624
14658
|
const liveActive = isRemoteFleetLiveActive(device);
|
|
14625
14659
|
const liveStreamId = String(getRemoteFleetDeviceField(device, 'liveStreamId', 'LiveStreamId', ''));
|
|
14626
14660
|
const hasLiveFrame = hasRemoteFleetLiveFrame(device);
|
|
@@ -15625,7 +15659,7 @@
|
|
|
15625
15659
|
|
|
15626
15660
|
const liveActions = document.createElement('div');
|
|
15627
15661
|
liveActions.style.cssText = 'display:flex;align-items:center;gap:8px;flex-wrap:wrap;';
|
|
15628
|
-
if (isRemoteFleetDeviceConnected(focusedDevice) &&
|
|
15662
|
+
if (isRemoteFleetDeviceConnected(focusedDevice) && isRemoteFleetLiveCapable(focusedDevice)) {
|
|
15629
15663
|
const startLiveButton = createRemoteFleetButton(liveActive ? 'Restart live' : 'Start live', 'Start focused view-only live stream', 'live-start');
|
|
15630
15664
|
startLiveButton.dataset.deviceId = focusedId;
|
|
15631
15665
|
startLiveButton.style.height = '30px';
|
|
@@ -15783,7 +15817,7 @@
|
|
|
15783
15817
|
.join(' / ') || 'unknown';
|
|
15784
15818
|
const release = String(device?.release || device?.Release || '');
|
|
15785
15819
|
const thumbnailEnabled = device?.thumbnailEnabled === true || device?.ThumbnailEnabled === true;
|
|
15786
|
-
const liveStreamEnabled = device
|
|
15820
|
+
const liveStreamEnabled = isRemoteFleetLiveCapable(device);
|
|
15787
15821
|
const liveStreamActive = isRemoteFleetLiveActive(device);
|
|
15788
15822
|
const liveStreamId = String(device?.liveStreamId || device?.LiveStreamId || '');
|
|
15789
15823
|
const taskEnabled = isRemoteFleetDeviceTaskCapable(device);
|
|
@@ -15999,7 +16033,7 @@
|
|
|
15999
16033
|
const connectedDevice = isRemoteFleetDeviceConnected(device);
|
|
16000
16034
|
const name = getRemoteFleetDeviceName(device);
|
|
16001
16035
|
const deviceId = getRemoteFleetDeviceId(device);
|
|
16002
|
-
const liveStreamEnabled = device
|
|
16036
|
+
const liveStreamEnabled = isRemoteFleetLiveCapable(device);
|
|
16003
16037
|
const liveStreamActive = isRemoteFleetLiveActive(device);
|
|
16004
16038
|
const hasThumbnail = hasRemoteFleetThumbnail(device);
|
|
16005
16039
|
const hasLiveFrame = hasRemoteFleetLiveFrame(device);
|
|
@@ -16181,6 +16215,12 @@
|
|
|
16181
16215
|
const readTaskInstruction = () => String(taskInput.value || '').trim();
|
|
16182
16216
|
const useAiAssist = () => aiToggle.checked === true;
|
|
16183
16217
|
const getDeviceCards = () => Array.from(grid.querySelectorAll('article[data-device-id]'));
|
|
16218
|
+
const pushUniqueFrameDeviceId = (ids, device) => {
|
|
16219
|
+
const id = getRemoteFleetDeviceId(device);
|
|
16220
|
+
if (id && !ids.includes(id)) {
|
|
16221
|
+
ids.push(id);
|
|
16222
|
+
}
|
|
16223
|
+
};
|
|
16184
16224
|
const getVisibleFrameDeviceIds = () => {
|
|
16185
16225
|
const ids = getDeviceCards()
|
|
16186
16226
|
.filter(card => card.style.display !== 'none')
|
|
@@ -16194,6 +16234,64 @@
|
|
|
16194
16234
|
}
|
|
16195
16235
|
return Array.from(new Set(ids)).slice(0, 120);
|
|
16196
16236
|
};
|
|
16237
|
+
const getFocusedLiveFrameDeviceIds = () => {
|
|
16238
|
+
const ids = [];
|
|
16239
|
+
if (selectedDevice
|
|
16240
|
+
&& isRemoteFleetDeviceConnected(selectedDevice)
|
|
16241
|
+
&& (isRemoteFleetLiveCapable(selectedDevice) || isRemoteFleetLiveActive(selectedDevice))) {
|
|
16242
|
+
pushUniqueFrameDeviceId(ids, selectedDevice);
|
|
16243
|
+
}
|
|
16244
|
+
if (focusedDevice
|
|
16245
|
+
&& isRemoteFleetDeviceConnected(focusedDevice)
|
|
16246
|
+
&& (isRemoteFleetLiveCapable(focusedDevice) || isRemoteFleetLiveActive(focusedDevice))) {
|
|
16247
|
+
pushUniqueFrameDeviceId(ids, focusedDevice);
|
|
16248
|
+
}
|
|
16249
|
+
devices
|
|
16250
|
+
.filter(device => isRemoteFleetDeviceConnected(device) && isRemoteFleetLiveActive(device))
|
|
16251
|
+
.slice(0, 6)
|
|
16252
|
+
.forEach(device => pushUniqueFrameDeviceId(ids, device));
|
|
16253
|
+
return ids.slice(0, 8);
|
|
16254
|
+
};
|
|
16255
|
+
const getAutoLiveDevice = () => {
|
|
16256
|
+
if (selectedDevice && isRemoteFleetDeviceConnected(selectedDevice) && isRemoteFleetLiveCapable(selectedDevice)) {
|
|
16257
|
+
return selectedDevice;
|
|
16258
|
+
}
|
|
16259
|
+
if (focusedDevice && isRemoteFleetDeviceConnected(focusedDevice) && isRemoteFleetLiveCapable(focusedDevice)) {
|
|
16260
|
+
return focusedDevice;
|
|
16261
|
+
}
|
|
16262
|
+
return null;
|
|
16263
|
+
};
|
|
16264
|
+
const ensureFocusedRemoteFleetLiveStream = async () => {
|
|
16265
|
+
const target = getAutoLiveDevice();
|
|
16266
|
+
if (!target || isRemoteFleetLiveActive(target)) {
|
|
16267
|
+
return null;
|
|
16268
|
+
}
|
|
16269
|
+
|
|
16270
|
+
const deviceId = getRemoteFleetDeviceId(target);
|
|
16271
|
+
if (!deviceId || bodyView._remoteFleetAutoLiveStartInFlight === deviceId) {
|
|
16272
|
+
return null;
|
|
16273
|
+
}
|
|
16274
|
+
|
|
16275
|
+
bodyView._remoteFleetAutoLiveStartInFlight = deviceId;
|
|
16276
|
+
try {
|
|
16277
|
+
const result = await invokeDotNetAsync('StartRemoteFleetLiveStreamFromJs', nodeId, deviceId);
|
|
16278
|
+
window.RuntimeTrace?.emit?.('remote.live.autoStart', {
|
|
16279
|
+
nodeId,
|
|
16280
|
+
deviceId,
|
|
16281
|
+
success: isRemoteFleetResultSuccess(result),
|
|
16282
|
+
fps: result?.fps || result?.Fps || 0,
|
|
16283
|
+
error: result?.error || result?.Error || ''
|
|
16284
|
+
});
|
|
16285
|
+
if (isRemoteFleetResultSuccess(result)) {
|
|
16286
|
+
await syncRemoteFleetNodeStateFromResult(result);
|
|
16287
|
+
}
|
|
16288
|
+
return result;
|
|
16289
|
+
} finally {
|
|
16290
|
+
if (bodyView._remoteFleetAutoLiveStartInFlight === deviceId) {
|
|
16291
|
+
bodyView._remoteFleetAutoLiveStartInFlight = '';
|
|
16292
|
+
}
|
|
16293
|
+
}
|
|
16294
|
+
};
|
|
16197
16295
|
const refreshRemoteFleetNode = async () => {
|
|
16198
16296
|
if (bodyView._remoteFleetRefreshInFlight === true) {
|
|
16199
16297
|
return null;
|
|
@@ -16213,6 +16311,18 @@
|
|
|
16213
16311
|
applyRemoteFleetFramePatches(bodyView, normalizeRemoteFleetDeviceFramePatches(result));
|
|
16214
16312
|
return result;
|
|
16215
16313
|
};
|
|
16314
|
+
const refreshRemoteFleetFocusedLiveFrames = async () => {
|
|
16315
|
+
const deviceIds = getFocusedLiveFrameDeviceIds();
|
|
16316
|
+
if (deviceIds.length === 0) {
|
|
16317
|
+
return null;
|
|
16318
|
+
}
|
|
16319
|
+
|
|
16320
|
+
const result = await invokeDotNetAsync('RefreshRemoteFleetFramesFromJs', nodeId, deviceIds, false);
|
|
16321
|
+
const patches = normalizeRemoteFleetDeviceFramePatches(result)
|
|
16322
|
+
.filter(frame => String(frame.kind || '').toLowerCase() === 'live');
|
|
16323
|
+
applyRemoteFleetFramePatches(bodyView, patches);
|
|
16324
|
+
return result;
|
|
16325
|
+
};
|
|
16216
16326
|
const prepareRemoteFleetTaskFollow = batch => {
|
|
16217
16327
|
if (!isRemoteFleetTaskBatchActive(batch)) {
|
|
16218
16328
|
bodyView.dataset.remoteFleetTaskFollowActive = 'false';
|
|
@@ -16514,13 +16624,13 @@
|
|
|
16514
16624
|
error: result?.error || result?.Error || ''
|
|
16515
16625
|
});
|
|
16516
16626
|
rememberRemoteFleetLocalHostTarget(nodeId, enabled === true, result);
|
|
16517
|
-
await syncRemoteFleetNodeStateFromResult(result);
|
|
16518
16627
|
if (quiet) {
|
|
16519
16628
|
if (!isRemoteFleetResultSuccess(result) || !isRemoteFleetResultActive(result)) {
|
|
16520
16629
|
stopRemoteFleetHostLeaseTimer(nodeId);
|
|
16521
16630
|
}
|
|
16522
16631
|
return result;
|
|
16523
16632
|
}
|
|
16633
|
+
await syncRemoteFleetNodeStateFromResult(result);
|
|
16524
16634
|
if (isRemoteFleetResultSuccess(result) && enabled !== true) {
|
|
16525
16635
|
stopRemoteFleetHostLeaseTimer(nodeId);
|
|
16526
16636
|
}
|
|
@@ -16704,8 +16814,15 @@
|
|
|
16704
16814
|
startRemoteFleetHostLeaseTimer(nodeId, () => setRemoteFleetHostTarget(true, { quiet: true, renew: true }));
|
|
16705
16815
|
}
|
|
16706
16816
|
|
|
16707
|
-
|
|
16708
|
-
|
|
16817
|
+
const hasFocusedLiveTarget = getFocusedLiveFrameDeviceIds().length > 0 || !!getAutoLiveDevice();
|
|
16818
|
+
if (hasFocusedLiveTarget || hasActiveLiveStream) {
|
|
16819
|
+
ensureFocusedRemoteFleetLiveStream().catch(error => {
|
|
16820
|
+
window.RuntimeTrace?.emit?.('remote.live.autoStartFailed', {
|
|
16821
|
+
nodeId,
|
|
16822
|
+
error: error?.message || String(error || '')
|
|
16823
|
+
});
|
|
16824
|
+
});
|
|
16825
|
+
startRemoteFleetFrameLoop(bodyView, REMOTE_FLEET_LIVE_FRAME_REFRESH_MS, () => refreshRemoteFleetFocusedLiveFrames());
|
|
16709
16826
|
bodyView._remoteFleetLiveRefreshTimer = setInterval(async () => {
|
|
16710
16827
|
if (!document.body.contains(bodyView)) {
|
|
16711
16828
|
clearRemoteFleetTimers(bodyView);
|
package/wwwroot/_framework/{MindExecution.Core.eyl4o4qxg8.dll → MindExecution.Core.cdplo34sb2.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.q1jwri2r1p.dll → MindExecution.Web.bfrevq2q4y.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-aehUBy4ZKXMCMfDXLIq7332pdALPad8G/hoFfyL1YcY=",
|
|
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.cdplo34sb2.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.7k773jan4j.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.nr5ioavpvn.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.qq63kom73x.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.y4ipk4t13u.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.u6p6pxpwxp.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.3gd195fq5t.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.sb0cb9cans.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.ib8s249hay.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.bfrevq2q4y.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.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
281
|
+
"MindExecution.Core.cdplo34sb2.dll": "sha256-sLc0yEeGYQhFPxxNKLQsHllAhwjKhNn+pfgRY0bHbpo=",
|
|
282
|
+
"MindExecution.Kernel.7k773jan4j.dll": "sha256-B5H6hzB6g8sWLqXUoXifv8CbLqVt7g1lLkkinTBKF8E=",
|
|
283
|
+
"MindExecution.Plugins.Concept.y4ipk4t13u.dll": "sha256-ElyrQZwOP6pofpDFl6jxXzggowpO1TJO2Rg7ipnXrVE=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.3gd195fq5t.dll": "sha256-U0cqGsVxa696XZuKmipYMdlZ3Da761XTPmB5H+7oX7I=",
|
|
285
|
+
"MindExecution.Shared.ib8s249hay.dll": "sha256-HrtN17KC7pAEJ7wf9AihBGmtftOOKR+S1iaj4FTtlwU=",
|
|
286
|
+
"MindExecution.Web.bfrevq2q4y.dll": "sha256-qbbJ5AlXO8D8IEMvXHyA9a64eJEidL8Ksn4a/SD7pu8="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
|
-
"MindExecution.Plugins.Admin.
|
|
290
|
-
"MindExecution.Plugins.Business.
|
|
291
|
-
"MindExecution.Plugins.Directory.
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
289
|
+
"MindExecution.Plugins.Admin.nr5ioavpvn.dll": "sha256-TWIfHGuEUUD1JtyuhfH4NM5JkvqAt8KcDVrWxvmwnVc=",
|
|
290
|
+
"MindExecution.Plugins.Business.qq63kom73x.dll": "sha256-4lgIcKclWQIjijrBJJFu84fgAH4MsDCN/myhG/K9OOU=",
|
|
291
|
+
"MindExecution.Plugins.Directory.u6p6pxpwxp.dll": "sha256-BjJ6/XNfp5wd/1RTdh99X9RR0I1GV6t4bp5A+RlAK9s=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.sb0cb9cans.dll": "sha256-WIQjip313fTDOOZ82NrcgM3dSrtgE8+A3grbIyBDMDE="
|
|
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-mdm-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-mdm-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-mdm-live-10fps-v557" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-mdm-live-10fps-v557" />
|
|
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-mdm-
|
|
582
|
+
const scriptVersion = '20260616-mdm-live-10fps-v557';
|
|
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": "ubjvvUaQ",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -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-jqoAthq+GECm6zHrHdOnHyBxLrin0deFSEmEXlCpIqg=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -410,44 +410,44 @@
|
|
|
410
410
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
|
-
"hash": "sha256-
|
|
414
|
-
"url": "_framework/MindExecution.Core.
|
|
413
|
+
"hash": "sha256-sLc0yEeGYQhFPxxNKLQsHllAhwjKhNn+pfgRY0bHbpo=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.cdplo34sb2.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-B5H6hzB6g8sWLqXUoXifv8CbLqVt7g1lLkkinTBKF8E=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.7k773jan4j.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-TWIfHGuEUUD1JtyuhfH4NM5JkvqAt8KcDVrWxvmwnVc=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.nr5ioavpvn.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-4lgIcKclWQIjijrBJJFu84fgAH4MsDCN/myhG/K9OOU=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.qq63kom73x.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-ElyrQZwOP6pofpDFl6jxXzggowpO1TJO2Rg7ipnXrVE=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.y4ipk4t13u.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-BjJ6/XNfp5wd/1RTdh99X9RR0I1GV6t4bp5A+RlAK9s=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.u6p6pxpwxp.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-U0cqGsVxa696XZuKmipYMdlZ3Da761XTPmB5H+7oX7I=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.3gd195fq5t.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-WIQjip313fTDOOZ82NrcgM3dSrtgE8+A3grbIyBDMDE=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.sb0cb9cans.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-HrtN17KC7pAEJ7wf9AihBGmtftOOKR+S1iaj4FTtlwU=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.ib8s249hay.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-qbbJ5AlXO8D8IEMvXHyA9a64eJEidL8Ksn4a/SD7pu8=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.bfrevq2q4y.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-lwdIDm7MRgjojZnnKDxY0mgEXEahNVpbFzIiLxbPh9k=",
|
|
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-oH92qacgFgianR88nktzfiIq92f7S1DnX+p/mh/U5yQ=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|