@mindexec/cli 0.2.162 → 0.2.164
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 +42 -11
- package/wwwroot/_framework/{MindExecution.Shared.xtnh42yedc.dll → MindExecution.Shared.dctgk9zjvp.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +3 -3
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +6 -6
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -14046,6 +14046,33 @@
|
|
|
14046
14046
|
: 0;
|
|
14047
14047
|
}
|
|
14048
14048
|
|
|
14049
|
+
function primeRemoteFleetRenderedFrameSurfaces(bodyView, reason = 'render') {
|
|
14050
|
+
if (!bodyView) {
|
|
14051
|
+
return 0;
|
|
14052
|
+
}
|
|
14053
|
+
|
|
14054
|
+
const nodeId = getRemoteFleetBodyNodeId(bodyView);
|
|
14055
|
+
const session = bodyView._remoteFleetBinaryFrameSession
|
|
14056
|
+
|| (nodeId ? remoteFleetBinaryFrameSessions.get(nodeId) : null)
|
|
14057
|
+
|| null;
|
|
14058
|
+
const primedFrames = applyRemoteFleetBinaryFrameCacheToBody(bodyView, session);
|
|
14059
|
+
if (primedFrames > 0) {
|
|
14060
|
+
bodyView._remoteFleetLastBinaryFrameAt = getRemoteFleetFrameNow();
|
|
14061
|
+
if (reason === 'ws-start') {
|
|
14062
|
+
window.RuntimeTrace?.emit?.('remote.frame.wsCachePrimed', {
|
|
14063
|
+
nodeId,
|
|
14064
|
+
count: primedFrames
|
|
14065
|
+
});
|
|
14066
|
+
}
|
|
14067
|
+
window.RuntimeTrace?.emit?.('remote.frame.surfaceCachePrimed', {
|
|
14068
|
+
nodeId,
|
|
14069
|
+
count: primedFrames,
|
|
14070
|
+
reason: String(reason || 'render')
|
|
14071
|
+
});
|
|
14072
|
+
}
|
|
14073
|
+
return primedFrames;
|
|
14074
|
+
}
|
|
14075
|
+
|
|
14049
14076
|
function getRemoteFleetBodyNodeId(bodyView) {
|
|
14050
14077
|
return String(
|
|
14051
14078
|
bodyView?.dataset?.nodeId
|
|
@@ -14566,14 +14593,7 @@
|
|
|
14566
14593
|
mode: String(options.mode || 'remote-fast')
|
|
14567
14594
|
};
|
|
14568
14595
|
bodyView._remoteFleetBinaryFrameSession = session;
|
|
14569
|
-
|
|
14570
|
-
if (primedFrames > 0) {
|
|
14571
|
-
bodyView._remoteFleetLastBinaryFrameAt = getRemoteFleetFrameNow();
|
|
14572
|
-
window.RuntimeTrace?.emit?.('remote.frame.wsCachePrimed', {
|
|
14573
|
-
nodeId,
|
|
14574
|
-
count: primedFrames
|
|
14575
|
-
});
|
|
14576
|
-
}
|
|
14596
|
+
primeRemoteFleetRenderedFrameSurfaces(bodyView, 'ws-start');
|
|
14577
14597
|
openRemoteFleetBinaryFrameSocket(session).catch(() => undefined);
|
|
14578
14598
|
return true;
|
|
14579
14599
|
}
|
|
@@ -14820,7 +14840,14 @@
|
|
|
14820
14840
|
image.alt = frame.kind === 'live' ? 'Live screen' : 'Remote screen';
|
|
14821
14841
|
image.loading = frame.kind === 'thumbnail' ? 'lazy' : 'eager';
|
|
14822
14842
|
image.decoding = 'async';
|
|
14823
|
-
image.style.cssText =
|
|
14843
|
+
image.style.cssText = `
|
|
14844
|
+
position: absolute;
|
|
14845
|
+
inset: 0;
|
|
14846
|
+
width: 100%;
|
|
14847
|
+
height: 100%;
|
|
14848
|
+
object-fit: cover;
|
|
14849
|
+
display: none;
|
|
14850
|
+
`;
|
|
14824
14851
|
if (typeof preview?.insertBefore === 'function') {
|
|
14825
14852
|
preview.insertBefore(image, preview.firstChild || null);
|
|
14826
14853
|
} else {
|
|
@@ -18229,6 +18256,7 @@
|
|
|
18229
18256
|
const previewSource = hasLiveFrame
|
|
18230
18257
|
? getRemoteFleetFrameSource(device, 'live')
|
|
18231
18258
|
: getRemoteFleetFrameSource(device, 'thumbnail');
|
|
18259
|
+
const hasPreviewSource = isRemoteFleetFrameSource(previewSource);
|
|
18232
18260
|
const isDetail = mode === 'detail';
|
|
18233
18261
|
|
|
18234
18262
|
const preview = document.createElement('div');
|
|
@@ -18245,12 +18273,13 @@
|
|
|
18245
18273
|
aspect-ratio: 16 / 9;
|
|
18246
18274
|
overflow: hidden;
|
|
18247
18275
|
border-radius: 0;
|
|
18248
|
-
background: ${
|
|
18276
|
+
background: ${hasPreviewSource ? 'linear-gradient(135deg, #0f172a 0%, #1e293b 100%)' : '#ffffff'};
|
|
18249
18277
|
border: 1px solid rgba(148, 163, 184, ${isDetail ? '0.34' : '0.24'});
|
|
18250
18278
|
box-shadow: none;
|
|
18251
18279
|
`;
|
|
18280
|
+
ensureRemoteFleetFrameCanvas(preview);
|
|
18252
18281
|
|
|
18253
|
-
if (hasLiveFrame || hasThumbnail) {
|
|
18282
|
+
if ((hasLiveFrame || hasThumbnail) && hasPreviewSource) {
|
|
18254
18283
|
const image = document.createElement('img');
|
|
18255
18284
|
image.dataset.remoteFleetFrameImage = 'true';
|
|
18256
18285
|
image.dataset.remoteFleetFrameKind = hasLiveFrame ? 'live' : 'thumbnail';
|
|
@@ -18921,6 +18950,8 @@
|
|
|
18921
18950
|
scheduleRemoteFleetTaskFollow();
|
|
18922
18951
|
}
|
|
18923
18952
|
|
|
18953
|
+
primeRemoteFleetRenderedFrameSurfaces(bodyView, 'monitor-render');
|
|
18954
|
+
|
|
18924
18955
|
sendVisibleButton.addEventListener('click', async event => {
|
|
18925
18956
|
event.preventDefault();
|
|
18926
18957
|
event.stopPropagation();
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-McKhTanAbQy94ZRRcnz0n0MaS+r4uMcYXTXrUHpgjAo=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"MindExecution.Plugins.Directory.jc0g7fvyzv.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
132
|
"MindExecution.Plugins.PlanMaster.g9r2lbhihg.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
133
|
"MindExecution.Plugins.YouTube.6ni889qas8.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
-
"MindExecution.Shared.
|
|
134
|
+
"MindExecution.Shared.dctgk9zjvp.dll": "MindExecution.Shared.dll",
|
|
135
135
|
"MindExecution.Web.cg3mse80dr.dll": "MindExecution.Web.dll",
|
|
136
136
|
"dotnet.js": "dotnet.js",
|
|
137
137
|
"dotnet.native.qc8g39g30v.js": "dotnet.native.js",
|
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
"MindExecution.Kernel.3zom09ir6j.dll": "sha256-78vR2SNkF9FwdQv0fEItSyz4HzgyzwGUROJAnpripPA=",
|
|
283
283
|
"MindExecution.Plugins.Concept.9igh5dsuw9.dll": "sha256-L9kDRKc/l7qDyrpHv3nP2eZJFl3hiTKzobGq+1Ir1u4=",
|
|
284
284
|
"MindExecution.Plugins.PlanMaster.g9r2lbhihg.dll": "sha256-hMdypae7YThv34t4g0TL/iI1GF/vQsZVQgEehe1AXt8=",
|
|
285
|
-
"MindExecution.Shared.
|
|
285
|
+
"MindExecution.Shared.dctgk9zjvp.dll": "sha256-jUAtMp/bR4Zd3OFIJIhYFsbFDWCq2Md+YiEpbO7Q628=",
|
|
286
286
|
"MindExecution.Web.cg3mse80dr.dll": "sha256-BDF8hVymVem3X/dB9iKv2S6Vohz7y9CKSYMQOattgaA="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
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=20260617-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-css3d-frame-v595" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-css3d-frame-v595" />
|
|
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 = '20260617-
|
|
582
|
+
const scriptVersion = '20260617-mdm-css3d-frame-v595';
|
|
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": "eKb1dZVH",
|
|
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-tVOXwWraF08ndMMJrGJhC6xbwLyBxzNsmLbDDcWNh60=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -442,8 +442,8 @@
|
|
|
442
442
|
"url": "_framework/MindExecution.Plugins.YouTube.6ni889qas8.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-jUAtMp/bR4Zd3OFIJIhYFsbFDWCq2Md+YiEpbO7Q628=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.dctgk9zjvp.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"hash": "sha256-BDF8hVymVem3X/dB9iKv2S6Vohz7y9CKSYMQOattgaA=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-D8Q3RQGgMZkBO5BKZ8K5zaLGkjSYT4MlCKCtiel5Ujg=",
|
|
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-GvBsY/r4ImlQfWqoXQmfjnNBl7zvIg8QOJyoBBRGNCY=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|