@mindexec/cli 0.2.1 → 0.2.3
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/README.md +38 -0
- package/package.json +6 -4
- package/remote-hub.js +571 -0
- package/scripts/remote-hub-smoke.mjs +117 -0
- package/server.js +108 -28
- package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +11 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +76 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +629 -5
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +16 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +16 -5
- package/wwwroot/_framework/MindExecution.Core.5luow1xgjs.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.gwwc40sc45.dll → MindExecution.Kernel.mot9nj6bzm.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.0jgrn1sckv.dll → MindExecution.Plugins.Admin.x9v2drg2f7.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.13mme2qcag.dll → MindExecution.Plugins.Business.b0kjoyx31x.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.dfp2mdt45q.dll → MindExecution.Plugins.Concept.6tojojgh1a.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.3w4t6n3se0.dll → MindExecution.Plugins.Directory.fqtbuqadsx.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.s0qpntz420.dll → MindExecution.Plugins.PlanMaster.j7llfeae6l.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.iu11fq8d16.dll → MindExecution.Plugins.YouTube.yo5fwdhugr.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.7j27dcqnrc.dll → MindExecution.Shared.0qi7vbn9a4.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.6cv7ad7rik.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +28 -28
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Core.1q1trifbuu.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.pq1ty8ov2v.dll +0 -0
|
@@ -367,6 +367,10 @@
|
|
|
367
367
|
isAgentLikeLodNode(model);
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
+
function isTemplateLauncherModel(model) {
|
|
371
|
+
return getNodeContentType(model) === 'templatelauncher';
|
|
372
|
+
}
|
|
373
|
+
|
|
370
374
|
function isCssMediaFallbackModel(model) {
|
|
371
375
|
const contentType = getNodeContentType(model);
|
|
372
376
|
return contentType === 'image' ||
|
|
@@ -710,6 +714,7 @@
|
|
|
710
714
|
function supportsCss3dNodeModel(model) {
|
|
711
715
|
const contentType = getNodeContentType(model);
|
|
712
716
|
return isTextLikeModel(model) ||
|
|
717
|
+
isTemplateLauncherModel(model) ||
|
|
713
718
|
contentType === 'image' ||
|
|
714
719
|
contentType === 'video' ||
|
|
715
720
|
contentType === 'embed';
|
|
@@ -4379,6 +4384,15 @@
|
|
|
4379
4384
|
this._warmCss3dNodeIds.has(nodeId);
|
|
4380
4385
|
}
|
|
4381
4386
|
|
|
4387
|
+
_syncAlwaysCss3dNodes(nodeObjectsById, module = this._module) {
|
|
4388
|
+
if (!nodeObjectsById || !isCss3dRendererEnabled(module)) return;
|
|
4389
|
+
|
|
4390
|
+
for (const entry of nodeObjectsById.values()) {
|
|
4391
|
+
if (!entry || !isTemplateLauncherModel(entry.model)) continue;
|
|
4392
|
+
this._showNodeCss3d(entry, module);
|
|
4393
|
+
}
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4382
4396
|
_showNodeCss3d(entry, module) {
|
|
4383
4397
|
if (!entry || !window.MindMapCss3DManager) return;
|
|
4384
4398
|
const model = entry.model;
|
|
@@ -5517,6 +5531,8 @@
|
|
|
5517
5531
|
// ▲▲▲ [FIX] ▲▲▲
|
|
5518
5532
|
|
|
5519
5533
|
|
|
5534
|
+
this._syncAlwaysCss3dNodes(nodeObjectsById, module);
|
|
5535
|
+
|
|
5520
5536
|
} else {
|
|
5521
5537
|
perfTime('fullResSetup', () => {
|
|
5522
5538
|
// Full-res: NEAR(DOM overlay + CSS3D) / NORMAL(CSS3D only)
|
|
@@ -38,6 +38,14 @@
|
|
|
38
38
|
const NODE_INTERACTIVE_CONTENT_SELECTORS = `${NODE_TEXT_SELECTION_SELECTORS}, .embed-content, .embed-card, .embed-card *, .embed-action, .embed-play-button, iframe, .map-node-memo__icon-button, .map-node-memo__icon-option, .map-node-memo__icon-popover, .map-node-memo__agent-action, .map-node-memo__agent-result-link, .map-node-memo__agent-plan-panel, .map-node-memo__agent-plan-body, .map-node-memo__agent-plan-body *, .map-node-memo__agent-console-panel, .map-node-memo__agent-console-body, .map-node-memo__agent-console-body *, .map-node-memo__agent-console-resize, .map-node-memo__agent-console-resize *`;
|
|
39
39
|
const MEMO_EDIT_ONLY_SELECTORS = '.map-node-memo__title, .map-node-memo__body, .map-node-memo__icon-button, .map-node-memo__icon-option, .map-node-memo__icon-popover';
|
|
40
40
|
|
|
41
|
+
function getNodeContentTypeLower(nodeModel) {
|
|
42
|
+
return String(nodeModel?.contentType ?? nodeModel?.ContentType ?? '').trim().toLowerCase();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function isTemplateLauncherNodeModel(nodeModel) {
|
|
46
|
+
return getNodeContentTypeLower(nodeModel) === 'templatelauncher';
|
|
47
|
+
}
|
|
48
|
+
|
|
41
49
|
function getNodeMetadata(nodeModel) {
|
|
42
50
|
return nodeModel?.metadata || nodeModel?.Metadata || null;
|
|
43
51
|
}
|
|
@@ -48,6 +56,7 @@
|
|
|
48
56
|
}
|
|
49
57
|
|
|
50
58
|
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
59
|
+
const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
51
60
|
const AUTOMATION_INPUT_PINS_METADATA_KEY = 'AutomationInputPins';
|
|
52
61
|
const AUTOMATION_OUTPUT_PINS_METADATA_KEY = 'AutomationOutputPins';
|
|
53
62
|
const AUTOMATION_PIN_RAIL_WIDTH = 118;
|
|
@@ -93,7 +102,8 @@
|
|
|
93
102
|
const semanticType = getNodeSemanticType(nodeModel);
|
|
94
103
|
return semanticType === 'MindCanvasAgent'
|
|
95
104
|
|| semanticType === 'AgentCommand'
|
|
96
|
-
|| semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE
|
|
105
|
+
|| semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE
|
|
106
|
+
|| semanticType === REMOTE_FLEET_SEMANTIC_TYPE;
|
|
97
107
|
}
|
|
98
108
|
|
|
99
109
|
function isAgentNodeModel(nodeModel) {
|
|
@@ -2106,7 +2116,8 @@
|
|
|
2106
2116
|
// ★ [Add] Safeguard: abort if factory is not loaded yet (avoid crash)
|
|
2107
2117
|
// ★ [Add] Safeguard: abort if factory is not loaded yet (avoid crash)
|
|
2108
2118
|
// ★ [수정] 텍스처가 필요 없는 CSS3D 타입(text, note, code, markdown)은 팩토리가 없어도 통과시킵니다.
|
|
2109
|
-
const
|
|
2119
|
+
const isTemplateLauncherNode = isTemplateLauncherNodeModel(nodeModel);
|
|
2120
|
+
const isCss3dType = nodeModel.contentType === 'text' || nodeModel.contentType === 'note' || nodeModel.contentType === 'memo' || nodeModel.contentType === 'code' || nodeModel.contentType === 'markdown' || nodeModel.contentType === 'embed' || isTemplateLauncherNode;
|
|
2110
2121
|
|
|
2111
2122
|
if (!isCss3dType && typeof window.MindMapTextureFactory === 'undefined') {
|
|
2112
2123
|
console.error(`[MindMapNodes] Critical: MindMapTextureFactory is missing! Cannot add node ${nodeModel.id}. Retrying in 100ms...`);
|
|
@@ -2170,7 +2181,7 @@
|
|
|
2170
2181
|
let autoPositioned = false;
|
|
2171
2182
|
const isNewNode = nodeModel.metadata && nodeModel.metadata['IsNew'] === 'true';
|
|
2172
2183
|
|
|
2173
|
-
if (isNewNode && (nodeModel.contentType === 'note' || nodeModel.contentType === 'text' || nodeModel.contentType === 'memo' || nodeModel.contentType === 'image' || nodeModel.contentType === 'video' || nodeModel.contentType === 'embed') && nodeModel.positionX === 0 && nodeModel.positionY === 0) {
|
|
2184
|
+
if (isNewNode && (nodeModel.contentType === 'note' || nodeModel.contentType === 'text' || nodeModel.contentType === 'memo' || nodeModel.contentType === 'image' || nodeModel.contentType === 'video' || nodeModel.contentType === 'embed' || isTemplateLauncherNode) && nodeModel.positionX === 0 && nodeModel.positionY === 0) {
|
|
2174
2185
|
if (module.cursorPosition) {
|
|
2175
2186
|
nodeModel.positionX = module.cursorPosition.x;
|
|
2176
2187
|
nodeModel.positionY = module.cursorPosition.y;
|
|
@@ -2685,7 +2696,7 @@
|
|
|
2685
2696
|
const isNearMode = module.lodRenderer ? !module.lodRenderer.isInLODMode : true;
|
|
2686
2697
|
|
|
2687
2698
|
// Rich cards use CSS3D in NEAR/NORMAL so wrapper glow/selection stays consistent.
|
|
2688
|
-
if (nodeModel.contentType === 'note' || nodeModel.contentType === 'memo' || nodeModel.contentType === 'text' || nodeModel.contentType === 'markdown' || nodeModel.contentType === 'code' || nodeModel.contentType === 'image' || nodeModel.contentType === 'video' || nodeModel.contentType === 'embed') {
|
|
2699
|
+
if (nodeModel.contentType === 'note' || nodeModel.contentType === 'memo' || nodeModel.contentType === 'text' || nodeModel.contentType === 'markdown' || nodeModel.contentType === 'code' || nodeModel.contentType === 'image' || nodeModel.contentType === 'video' || nodeModel.contentType === 'embed' || isTemplateLauncherNode) {
|
|
2689
2700
|
log(`[MindMapNodes] Creating cssObject for ${nodeModel.contentType} node ${nodeModel.id}`);
|
|
2690
2701
|
const shouldDeferCssObject = module.isLoading && (
|
|
2691
2702
|
nodeModel.contentType === 'text' ||
|
|
@@ -2704,7 +2715,7 @@
|
|
|
2704
2715
|
const glPos = glObject.position;
|
|
2705
2716
|
// [FIX] Parallax issue fix: Set Z to match glObject (was + 0.2)
|
|
2706
2717
|
nodeEntry.cssObject.position.set(glPos.x, glPos.y, glPos.z);
|
|
2707
|
-
const shouldAttachCss = isNearMode;
|
|
2718
|
+
const shouldAttachCss = isNearMode || isTemplateLauncherNode;
|
|
2708
2719
|
if (shouldAttachCss) {
|
|
2709
2720
|
(module.cssScene || module.scene).add(nodeEntry.cssObject);
|
|
2710
2721
|
window.MindMapCss3DManager?.markCssParentRepairNeeded?.(module, nodeModel.id);
|
|
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-O+rTW41RGhoEFv77enci/rzrHD3OdR8jVue4Ekv/BXc=",
|
|
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.m05i39uvk9.dll": "System.dll",
|
|
124
124
|
"netstandard.0xet7jg7ky.dll": "netstandard.dll",
|
|
125
125
|
"System.Private.CoreLib.rkafq04oma.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.5luow1xgjs.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.mot9nj6bzm.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.x9v2drg2f7.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.b0kjoyx31x.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.6tojojgh1a.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.fqtbuqadsx.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.j7llfeae6l.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.yo5fwdhugr.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.0qi7vbn9a4.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.6cv7ad7rik.dll": "MindExecution.Web.dll",
|
|
136
136
|
"dotnet.js": "dotnet.js",
|
|
137
137
|
"dotnet.native.xsn1d6x2kd.js": "dotnet.native.js",
|
|
138
138
|
"dotnet.native.vz0adxojrz.wasm": "dotnet.native.wasm",
|
|
@@ -278,18 +278,18 @@
|
|
|
278
278
|
"System.Xml.XDocument.c539ki6cuq.dll": "sha256-MPTRJkptrL9nGa2tl4kF46+wErNUYRPCGblX3ANoKoY=",
|
|
279
279
|
"System.m05i39uvk9.dll": "sha256-5jDfIdbYAigw7/Q/lMzt5W/+cayGbW9ko9FvuaN1GsQ=",
|
|
280
280
|
"netstandard.0xet7jg7ky.dll": "sha256-xENDv620uJ8fHwLJ2bdhrTHz4QPjvqXOztnk2a4wr0c=",
|
|
281
|
-
"MindExecution.Core.
|
|
282
|
-
"MindExecution.Kernel.
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
281
|
+
"MindExecution.Core.5luow1xgjs.dll": "sha256-2YRYhyo44+pE+OT0e2NSDCcxNji6d55ITkrE/pj7xL0=",
|
|
282
|
+
"MindExecution.Kernel.mot9nj6bzm.dll": "sha256-ej5PzXIwPCOmBctW5KddMd2Lotqv5PPwPrVPMHRrfVc=",
|
|
283
|
+
"MindExecution.Plugins.Concept.6tojojgh1a.dll": "sha256-pnckzioW3S/Gd8Zgwvm6KqHzCMEUAmO2pXcs1ilG2XQ=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.j7llfeae6l.dll": "sha256-YRqzOjhkhZKW1kpttYBKFTB9kUpO2khBvAyayRzy4YE=",
|
|
285
|
+
"MindExecution.Shared.0qi7vbn9a4.dll": "sha256-iJXZ6p8LtuUPrlFwKFxkMntcxXsKARiL/YO/UWnFOBU=",
|
|
286
|
+
"MindExecution.Web.6cv7ad7rik.dll": "sha256-Zmi8Ley2/DFOiUNHrQ1NrsYzza6LRGdMdPmpZ6SlKWk="
|
|
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.x9v2drg2f7.dll": "sha256-K/zYBndcqJXnUSVnQd6BwD/XxIQ3kTa9QKYfLV/grpE=",
|
|
290
|
+
"MindExecution.Plugins.Business.b0kjoyx31x.dll": "sha256-9WMgmkFQqcrhPdkhbn8emFOJN1JHjbXRsOrW/XslYuM=",
|
|
291
|
+
"MindExecution.Plugins.Directory.fqtbuqadsx.dll": "sha256-R9GNp8lYTA83muajc5V/BTbTSVuuO0ateoMiNc8O9g0=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.yo5fwdhugr.dll": "sha256-ks7QMZUaNrwB2Il1bP77dJ2jpbRv+CRuAj8v4cFvk7s="
|
|
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=20260610-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260610-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260610-template-card-v460" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260610-template-card-v460" />
|
|
12
12
|
<!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?꿎뼯??-->
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
const base = '_content/MindExecution.Shared/js/';
|
|
561
|
-
const scriptVersion = '
|
|
561
|
+
const scriptVersion = '20260612-remote-thumb-v463';
|
|
562
562
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
563
563
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
564
564
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "kF7vg+wU",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"hash": "sha256-
|
|
45
|
+
"hash": "sha256-8c4EBD7ciaWPLPydbFB44+kg/t5LYC0wVUO7GM0eHHs=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-H2KIQzUqbg//NwybrTBnXWJZlM5uB4qvHK5jiNCJG3M=",
|
|
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-D+RFf7H+V5VEKkPJfNGy7IiWQdR3oYnJ1ooa7i344ww=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -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-eCnM98QtSxKZXrNczEE7YjT3uHmIVz9tee8R+33mMnc=",
|
|
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-UNYwysmH7qa2H0uMg1M0+FbzNvkxVnOUsOTtDVCc4b4=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -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-2YRYhyo44+pE+OT0e2NSDCcxNji6d55ITkrE/pj7xL0=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.5luow1xgjs.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-ej5PzXIwPCOmBctW5KddMd2Lotqv5PPwPrVPMHRrfVc=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.mot9nj6bzm.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-K/zYBndcqJXnUSVnQd6BwD/XxIQ3kTa9QKYfLV/grpE=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.x9v2drg2f7.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-9WMgmkFQqcrhPdkhbn8emFOJN1JHjbXRsOrW/XslYuM=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.b0kjoyx31x.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-pnckzioW3S/Gd8Zgwvm6KqHzCMEUAmO2pXcs1ilG2XQ=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.6tojojgh1a.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-R9GNp8lYTA83muajc5V/BTbTSVuuO0ateoMiNc8O9g0=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.fqtbuqadsx.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-YRqzOjhkhZKW1kpttYBKFTB9kUpO2khBvAyayRzy4YE=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.j7llfeae6l.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-ks7QMZUaNrwB2Il1bP77dJ2jpbRv+CRuAj8v4cFvk7s=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.yo5fwdhugr.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-iJXZ6p8LtuUPrlFwKFxkMntcxXsKARiL/YO/UWnFOBU=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.0qi7vbn9a4.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-Zmi8Ley2/DFOiUNHrQ1NrsYzza6LRGdMdPmpZ6SlKWk=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.6cv7ad7rik.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-8zIv4wl1NzISQFFiuDooCDM8G/D4O+dZZVbdToxKOKU=",
|
|
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-/aDhdXrjdOK/zJR6oXMIZoF8WvryE+s7wxPwDa5w9xE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|