@mindexec/cli 0.2.75 → 0.2.77
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 +47 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +33 -5
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +1 -1
- package/wwwroot/_framework/Microsoft.JSInterop.ew9vz9o332.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.pkaelum0gw.dll → MindExecution.Plugins.Concept.k1jkhdfuvd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.9m2x4npbvh.dll → MindExecution.Plugins.PlanMaster.w2k7psjlox.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.1odbm6r8w6.dll → MindExecution.Plugins.YouTube.6ztu8ax35z.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.hind9h1jye.dll → MindExecution.Shared.fdpespfctr.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.w0cy5lb7gd.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +13 -13
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +20 -20
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/Microsoft.JSInterop.17lq4j1j7g.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.2dnmq1omrn.dll +0 -0
package/package.json
CHANGED
|
@@ -84,6 +84,7 @@ const MINDMAP_CORE_BUILD_ID = '20260613-remote-monitor-gap-v214';
|
|
|
84
84
|
const PASSIVE_OVERLAY_IDLE_DELAY_MS = 500;
|
|
85
85
|
const PASSIVE_OVERLAY_PAN_IDLE_DELAY_MS = 500;
|
|
86
86
|
const CURSOR_DOM_BLINK_DURATION_MS = 1000;
|
|
87
|
+
const ANIMATION_IDLE_LOW_FPS_DELAY_MS = 500;
|
|
87
88
|
const HOME_CAMERA_NORMAL_MID_Z = 8250;
|
|
88
89
|
const HOME_DENSE_CLUSTER_MIN_CELL_SIZE = 1200;
|
|
89
90
|
const HOME_DENSE_CLUSTER_MAX_CELL_SIZE = 3600;
|
|
@@ -2712,6 +2713,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
2712
2713
|
this._animationLoopCallback = null;
|
|
2713
2714
|
this._animationLoopExecuting = false;
|
|
2714
2715
|
this._animationLoopRunning = false;
|
|
2716
|
+
this._animationIdleCadenceFrame = false;
|
|
2715
2717
|
this._lastAnimationLoopDelayMs = 0;
|
|
2716
2718
|
this._lastAnimationWakeReason = '';
|
|
2717
2719
|
// ▲▲▲ [Optimization] ▲▲▲
|
|
@@ -2734,6 +2736,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
2734
2736
|
this.cameraTraceMode = 'cursor';
|
|
2735
2737
|
this.cursorDirection = 'horizontal';
|
|
2736
2738
|
this.swapWheelZoomControls = false;
|
|
2739
|
+
this.useAnimation60Fps = false;
|
|
2737
2740
|
|
|
2738
2741
|
window.MindCanvasBuildInfo?.setRuntime?.('canvasPhase', this.canvasPhase);
|
|
2739
2742
|
}
|
|
@@ -2819,6 +2822,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
2819
2822
|
return;
|
|
2820
2823
|
}
|
|
2821
2824
|
|
|
2825
|
+
this._animationIdleCadenceFrame = true;
|
|
2822
2826
|
this.animationFrameId = this._requestVisualAnimationFrame(callback);
|
|
2823
2827
|
}, safeDelayMs);
|
|
2824
2828
|
return;
|
|
@@ -4334,6 +4338,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4334
4338
|
this._animationLoopExecuting = true;
|
|
4335
4339
|
let nextAnimationLoopDelayMs = 0;
|
|
4336
4340
|
const frameStart = performance.now();
|
|
4341
|
+
const isIdleCadenceFrame = this._animationIdleCadenceFrame === true;
|
|
4342
|
+
this._animationIdleCadenceFrame = false;
|
|
4337
4343
|
|
|
4338
4344
|
const frameDelta = frameStart - (this._lastFrameTime || frameStart);
|
|
4339
4345
|
this._lastFrameTime = frameStart;
|
|
@@ -4636,6 +4642,11 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4636
4642
|
this.useLODRendering === true &&
|
|
4637
4643
|
this.lodRenderer?.isInLODMode === true &&
|
|
4638
4644
|
(frameStart - Number(this._lastLodPanVisibilityRefreshAt || 0)) >= LOD_PAN_VISIBILITY_REFRESH_INTERVAL_MS;
|
|
4645
|
+
const shouldUseAnimation60Fps = this.useAnimation60Fps === true && !isBoardLoading;
|
|
4646
|
+
const shouldUseAnimationLowFpsFrame =
|
|
4647
|
+
shouldUseAnimation60Fps !== true &&
|
|
4648
|
+
isIdleCadenceFrame === true &&
|
|
4649
|
+
!isBoardLoading;
|
|
4639
4650
|
const shouldUpdate = !isBoardLoading && (hasForcedUpdate || movingUpdateDue || isNodeInteracting ||
|
|
4640
4651
|
residentDirtyRequiresUpdate ||
|
|
4641
4652
|
residentBandChanging ||
|
|
@@ -4670,6 +4681,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4670
4681
|
shouldUpdate === true ||
|
|
4671
4682
|
hasForcedUpdate === true ||
|
|
4672
4683
|
isBoardLoading === true ||
|
|
4684
|
+
shouldUseAnimation60Fps === true ||
|
|
4685
|
+
shouldUseAnimationLowFpsFrame === true ||
|
|
4673
4686
|
this._forceThemeAnimationFrame === true;
|
|
4674
4687
|
const isMenuOverlayUiEnabled = !isBoardLoading && renderDebugFlags.enableMenuOverlayUi !== false;
|
|
4675
4688
|
const isMultiSelectOverlayUiEnabled = !isBoardLoading && renderDebugFlags.enableMultiSelectOverlayUi !== false;
|
|
@@ -5230,6 +5243,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5230
5243
|
isBoardLoading === true ||
|
|
5231
5244
|
shouldUpdate === true ||
|
|
5232
5245
|
isInteractiveFrame === true ||
|
|
5246
|
+
shouldUseAnimation60Fps === true ||
|
|
5247
|
+
shouldUseAnimationLowFpsFrame === true ||
|
|
5233
5248
|
themeAnimatedThisFrame === true
|
|
5234
5249
|
);
|
|
5235
5250
|
if (shouldRenderWebglFrame) {
|
|
@@ -5564,8 +5579,23 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5564
5579
|
shouldSyncTextOverlays !== true &&
|
|
5565
5580
|
hasPendingAnimationWakeWork !== true;
|
|
5566
5581
|
if (shouldParkIdleAnimationLoop) {
|
|
5567
|
-
this.
|
|
5582
|
+
const idleAnimationDelayMs = this.useAnimation60Fps === true ? 0 : ANIMATION_IDLE_LOW_FPS_DELAY_MS;
|
|
5583
|
+
this._lastAnimationLoopDelayMs = idleAnimationDelayMs;
|
|
5568
5584
|
this._animationLoopExecuting = false;
|
|
5585
|
+
this._scheduleAnimationLoop(loop, idleAnimationDelayMs);
|
|
5586
|
+
return;
|
|
5587
|
+
}
|
|
5588
|
+
const shouldContinueLowFpsIdleCadence =
|
|
5589
|
+
shouldUseAnimationLowFpsFrame === true &&
|
|
5590
|
+
shouldCaptureFramePerf !== true &&
|
|
5591
|
+
isInteractiveFrame !== true &&
|
|
5592
|
+
shouldUpdate !== true &&
|
|
5593
|
+
hasPendingAnimationWakeWork !== true;
|
|
5594
|
+
if (shouldContinueLowFpsIdleCadence) {
|
|
5595
|
+
nextAnimationLoopDelayMs = ANIMATION_IDLE_LOW_FPS_DELAY_MS;
|
|
5596
|
+
this._lastAnimationLoopDelayMs = nextAnimationLoopDelayMs;
|
|
5597
|
+
this._animationLoopExecuting = false;
|
|
5598
|
+
this._scheduleAnimationLoop(loop, nextAnimationLoopDelayMs);
|
|
5569
5599
|
return;
|
|
5570
5600
|
}
|
|
5571
5601
|
|
|
@@ -6278,6 +6308,20 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6278
6308
|
if (settings.swapWheelZoomControls !== undefined) {
|
|
6279
6309
|
module.swapWheelZoomControls = settings.swapWheelZoomControls === true;
|
|
6280
6310
|
}
|
|
6311
|
+
|
|
6312
|
+
if (settings.useAnimation60Fps !== undefined) {
|
|
6313
|
+
const nextUseAnimation = settings.useAnimation60Fps === true;
|
|
6314
|
+
if (module.useAnimation60Fps !== nextUseAnimation) {
|
|
6315
|
+
module.useAnimation60Fps = nextUseAnimation;
|
|
6316
|
+
if (module.isAnimationLoopActive()) {
|
|
6317
|
+
module.requestAnimationWake('settings-animation-mode');
|
|
6318
|
+
} else {
|
|
6319
|
+
module.animate();
|
|
6320
|
+
}
|
|
6321
|
+
} else {
|
|
6322
|
+
module.useAnimation60Fps = nextUseAnimation;
|
|
6323
|
+
}
|
|
6324
|
+
}
|
|
6281
6325
|
}
|
|
6282
6326
|
|
|
6283
6327
|
function performMindMapInit(id, h) {
|
|
@@ -7608,7 +7652,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7608
7652
|
aiNodeDefaultHeight: moduleInstance.aiNodeDefaultHeight || 200,
|
|
7609
7653
|
showFullAiResponse: moduleInstance.showFullAiResponse || false,
|
|
7610
7654
|
cursorDirection: moduleInstance.cursorDirection || 'horizontal',
|
|
7611
|
-
swapWheelZoomControls: moduleInstance.swapWheelZoomControls === true
|
|
7655
|
+
swapWheelZoomControls: moduleInstance.swapWheelZoomControls === true,
|
|
7656
|
+
useAnimation60Fps: moduleInstance.useAnimation60Fps === true
|
|
7612
7657
|
};
|
|
7613
7658
|
},
|
|
7614
7659
|
getRenderDebugFlags: () => getRenderDebugFlagsSnapshot(),
|
|
@@ -117,6 +117,8 @@
|
|
|
117
117
|
// NOTE: Distance-based line disable removed (lines always render by distance)
|
|
118
118
|
const AGENT_CONSOLE_HEIGHT_METADATA_KEY = 'AgentCommandConsoleHeight';
|
|
119
119
|
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
120
|
+
const REMOTE_FLEET_MONITOR_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
121
|
+
const REMOTE_FLEET_DEVICE_SEMANTIC_TYPE = 'RemoteFleetDevice';
|
|
120
122
|
const AGENT_LOD_SEMANTIC_TYPES = new Set([
|
|
121
123
|
'MindCanvasAgent',
|
|
122
124
|
'AgentCommand',
|
|
@@ -364,13 +366,24 @@
|
|
|
364
366
|
contentType === 'memo' ||
|
|
365
367
|
contentType === 'markdown' ||
|
|
366
368
|
contentType === 'code' ||
|
|
367
|
-
isAgentLikeLodNode(model)
|
|
369
|
+
isAgentLikeLodNode(model) ||
|
|
370
|
+
isTemplateLauncherLodProxyModel(model);
|
|
368
371
|
}
|
|
369
372
|
|
|
370
373
|
function isTemplateLauncherModel(model) {
|
|
371
374
|
return getNodeContentType(model) === 'templatelauncher';
|
|
372
375
|
}
|
|
373
376
|
|
|
377
|
+
function isRemoteFleetNodeModel(model) {
|
|
378
|
+
const semanticType = getNodeSemanticType(model);
|
|
379
|
+
return semanticType === REMOTE_FLEET_MONITOR_SEMANTIC_TYPE ||
|
|
380
|
+
semanticType === REMOTE_FLEET_DEVICE_SEMANTIC_TYPE;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
function isTemplateLauncherLodProxyModel(model) {
|
|
384
|
+
return isTemplateLauncherModel(model) && !isRemoteFleetNodeModel(model);
|
|
385
|
+
}
|
|
386
|
+
|
|
374
387
|
function isCssMediaFallbackModel(model) {
|
|
375
388
|
const contentType = getNodeContentType(model);
|
|
376
389
|
return contentType === 'image' ||
|
|
@@ -4384,12 +4397,27 @@
|
|
|
4384
4397
|
this._warmCss3dNodeIds.has(nodeId);
|
|
4385
4398
|
}
|
|
4386
4399
|
|
|
4387
|
-
|
|
4388
|
-
if (!nodeObjectsById
|
|
4400
|
+
_syncTemplateLauncherCss3dForLod(nodeObjectsById, module = this._module) {
|
|
4401
|
+
if (!nodeObjectsById) return;
|
|
4389
4402
|
|
|
4390
4403
|
for (const entry of nodeObjectsById.values()) {
|
|
4391
4404
|
if (!entry || !isTemplateLauncherModel(entry.model)) continue;
|
|
4392
|
-
|
|
4405
|
+
|
|
4406
|
+
if (isRemoteFleetNodeModel(entry.model)) {
|
|
4407
|
+
if (isCss3dRendererEnabled(module)) {
|
|
4408
|
+
this._showNodeCss3d(entry, module);
|
|
4409
|
+
}
|
|
4410
|
+
continue;
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
if (this.isInLODMode === true) {
|
|
4414
|
+
if (entry.cssObject) {
|
|
4415
|
+
this._hideNodeCss3d(entry);
|
|
4416
|
+
}
|
|
4417
|
+
this._hideTextLodFullVisual(entry);
|
|
4418
|
+
} else if (isCss3dRendererEnabled(module)) {
|
|
4419
|
+
this._showNodeCss3d(entry, module);
|
|
4420
|
+
}
|
|
4393
4421
|
}
|
|
4394
4422
|
}
|
|
4395
4423
|
|
|
@@ -5531,7 +5559,7 @@
|
|
|
5531
5559
|
// ▲▲▲ [FIX] ▲▲▲
|
|
5532
5560
|
|
|
5533
5561
|
|
|
5534
|
-
this.
|
|
5562
|
+
this._syncTemplateLauncherCss3dForLod(nodeObjectsById, module);
|
|
5535
5563
|
|
|
5536
5564
|
} else {
|
|
5537
5565
|
perfTime('fullResSetup', () => {
|
|
@@ -2716,7 +2716,7 @@
|
|
|
2716
2716
|
const glPos = glObject.position;
|
|
2717
2717
|
// [FIX] Parallax issue fix: Set Z to match glObject (was + 0.2)
|
|
2718
2718
|
nodeEntry.cssObject.position.set(glPos.x, glPos.y, glPos.z);
|
|
2719
|
-
const shouldAttachCss = isNearMode
|
|
2719
|
+
const shouldAttachCss = isNearMode;
|
|
2720
2720
|
if (shouldAttachCss) {
|
|
2721
2721
|
(module.cssScene || module.scene).add(nodeEntry.cssObject);
|
|
2722
2722
|
window.MindMapCss3DManager?.markCssParentRepairNeeded?.(module, nodeModel.id);
|
|
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-y2ix3kMc6T62O9ZxhwLABh1I/Al3HdOXnQiVdV29m0E=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"Microsoft.IdentityModel.Logging.229uyvpgio.dll": "Microsoft.IdentityModel.Logging.dll",
|
|
36
36
|
"Microsoft.IdentityModel.Tokens.9sibtajc9f.dll": "Microsoft.IdentityModel.Tokens.dll",
|
|
37
37
|
"Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll": "Microsoft.IO.RecyclableMemoryStream.dll",
|
|
38
|
-
"Microsoft.JSInterop.
|
|
38
|
+
"Microsoft.JSInterop.ew9vz9o332.dll": "Microsoft.JSInterop.dll",
|
|
39
39
|
"Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll": "Microsoft.JSInterop.WebAssembly.dll",
|
|
40
40
|
"Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll": "Microsoft.ML.OnnxRuntime.dll",
|
|
41
41
|
"Microsoft.ML.Tokenizers.cm2vuv2z61.dll": "Microsoft.ML.Tokenizers.dll",
|
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"MindExecution.Kernel.mdo1lzjvvp.dll": "MindExecution.Kernel.dll",
|
|
128
128
|
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
129
|
"MindExecution.Plugins.Business.nwivpk9djf.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
+
"MindExecution.Plugins.Concept.k1jkhdfuvd.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
131
|
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.w2k7psjlox.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.6ztu8ax35z.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.fdpespfctr.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.w0cy5lb7gd.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",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"Microsoft.IdentityModel.Logging.229uyvpgio.dll": "sha256-Wldlk+9Z8TE89cz81jc7jTKHs+gvol0hiZgVJN4kDM8=",
|
|
193
193
|
"Microsoft.IdentityModel.Tokens.9sibtajc9f.dll": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
|
|
194
194
|
"Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll": "sha256-ryT6NCt/nwhifrGy+UEPL2SXCx4TXF/kg3h4+Ks+y2g=",
|
|
195
|
-
"Microsoft.JSInterop.
|
|
195
|
+
"Microsoft.JSInterop.ew9vz9o332.dll": "sha256-IrX5UxymKz+4ObhMjcxkVH3KFKydPaneR9y4rkFud4Y=",
|
|
196
196
|
"Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
|
|
197
197
|
"Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
|
|
198
198
|
"Microsoft.ML.Tokenizers.cm2vuv2z61.dll": "sha256-BLnLmmvOMzBx4HHGc1qJFLtV4eofGXcH7XG/TKv2ync=",
|
|
@@ -280,16 +280,16 @@
|
|
|
280
280
|
"netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
|
|
281
281
|
"MindExecution.Core.csfu1xtj3l.dll": "sha256-lP9GUQU4xFLsUU4IOwpUjt09mQO5M/bgLAAS8UnjLMs=",
|
|
282
282
|
"MindExecution.Kernel.mdo1lzjvvp.dll": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
283
|
+
"MindExecution.Plugins.Concept.k1jkhdfuvd.dll": "sha256-mO3CFzyoVeCVtQeso8odbqDpJrF9GQO96fwZJqQoQPM=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.w2k7psjlox.dll": "sha256-aHrFiszwKwd1XwyUZd9TjoK2b+DuVQ0FXD07Fn8z0vI=",
|
|
285
|
+
"MindExecution.Shared.fdpespfctr.dll": "sha256-8wcYqXAGCWN7nhCfpoeYnH92aAk4jkyN6VYWLjFXzEo=",
|
|
286
|
+
"MindExecution.Web.w0cy5lb7gd.dll": "sha256-YHpFv2KJ/pV0JNiOfNwcPzYHAok2ZPs1I6AtnATLdGk="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
289
|
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "sha256-37+Egd35menNv18hEZ64qjiu0x1r+wFOuO5zDiOGfug=",
|
|
290
290
|
"MindExecution.Plugins.Business.nwivpk9djf.dll": "sha256-iTV0NyCB7fnU+l8brClBd+KYnBDw628yHCwoRrQdTWE=",
|
|
291
291
|
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
292
|
+
"MindExecution.Plugins.YouTube.6ztu8ax35z.dll": "sha256-QjMKOawibOw31RS85bac8CW7+5tQZCUum10ex8V0O2w="
|
|
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=20260614-remote-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-remote-host-route-v536" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-host-route-v536" />
|
|
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 = '20260614-remote-
|
|
582
|
+
const scriptVersion = '20260614-remote-host-route-v536';
|
|
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": "cCLAMNpD",
|
|
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-zhbWABqHMZ+nPWlMMRuTFz6AfkMn5aOwZ9u63V1oW68=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-pIWayQBgEG/T1yD56k6gUU7n0xcw8p0gd0B4nrO4JoE=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -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-MmWAqcPEjWAGKxEpAAwKMDEaaN5eZS7jpmC7fiXircc=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -385,14 +385,14 @@
|
|
|
385
385
|
"hash": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
|
|
386
386
|
"url": "_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll"
|
|
387
387
|
},
|
|
388
|
-
{
|
|
389
|
-
"hash": "sha256-M5KHmtf1wOWvLDbq+ytj3O6lEbQd7SloHoiqDiB/Ofw=",
|
|
390
|
-
"url": "_framework/Microsoft.JSInterop.17lq4j1j7g.dll"
|
|
391
|
-
},
|
|
392
388
|
{
|
|
393
389
|
"hash": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
|
|
394
390
|
"url": "_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll"
|
|
395
391
|
},
|
|
392
|
+
{
|
|
393
|
+
"hash": "sha256-IrX5UxymKz+4ObhMjcxkVH3KFKydPaneR9y4rkFud4Y=",
|
|
394
|
+
"url": "_framework/Microsoft.JSInterop.ew9vz9o332.dll"
|
|
395
|
+
},
|
|
396
396
|
{
|
|
397
397
|
"hash": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
|
|
398
398
|
"url": "_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll"
|
|
@@ -426,28 +426,28 @@
|
|
|
426
426
|
"url": "_framework/MindExecution.Plugins.Business.nwivpk9djf.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-mO3CFzyoVeCVtQeso8odbqDpJrF9GQO96fwZJqQoQPM=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.k1jkhdfuvd.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"hash": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
434
434
|
"url": "_framework/MindExecution.Plugins.Directory.jnzcrwl049.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-aHrFiszwKwd1XwyUZd9TjoK2b+DuVQ0FXD07Fn8z0vI=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.w2k7psjlox.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-QjMKOawibOw31RS85bac8CW7+5tQZCUum10ex8V0O2w=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.6ztu8ax35z.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-8wcYqXAGCWN7nhCfpoeYnH92aAk4jkyN6VYWLjFXzEo=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.fdpespfctr.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-YHpFv2KJ/pV0JNiOfNwcPzYHAok2ZPs1I6AtnATLdGk=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.w0cy5lb7gd.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-mmj14b49PZYVamZq0r9DSaTC8IXxvQNJt90KuFVTuSg=",
|
|
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-V6X/gA+YWmylQA3sJo3mWU1F2GESZw9q4qWyqUYkNVE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|