@mindexec/cli 0.2.74 → 0.2.75
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-menu-manager.js +10 -0
- package/wwwroot/_framework/{MindExecution.Shared.ir5v2yll9b.dll → MindExecution.Shared.hind9h1jye.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
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
{ key: 'slate', swatch: '#64748b', ring: 'rgba(100, 116, 139, 0.22)' }
|
|
21
21
|
];
|
|
22
22
|
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
23
|
+
const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
23
24
|
|
|
24
25
|
function ensureFeedbackStyles() {
|
|
25
26
|
if (document.getElementById('mindmap-feedback-styles')) return;
|
|
@@ -263,6 +264,10 @@
|
|
|
263
264
|
return getNodeSemanticType(model) === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
|
|
264
265
|
}
|
|
265
266
|
|
|
267
|
+
function isRemoteFleetMonitorNode(model) {
|
|
268
|
+
return getNodeSemanticType(model) === REMOTE_FLEET_SEMANTIC_TYPE;
|
|
269
|
+
}
|
|
270
|
+
|
|
266
271
|
function canRunExecutableNode(model) {
|
|
267
272
|
return isBusinessAutomationNode(model);
|
|
268
273
|
}
|
|
@@ -847,6 +852,11 @@
|
|
|
847
852
|
return btn;
|
|
848
853
|
};
|
|
849
854
|
|
|
855
|
+
if (isRemoteFleetMonitorNode(nodeEntry.model)) {
|
|
856
|
+
container.appendChild(addButton('delete-btn js-btn-delete', 'Delete', 'fa-solid fa-trash'));
|
|
857
|
+
return container;
|
|
858
|
+
}
|
|
859
|
+
|
|
850
860
|
const appendNodeRunButton = () => {
|
|
851
861
|
if (!canRunExecutableNode(nodeEntry.model)) {
|
|
852
862
|
return false;
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-LJVnweIzmnk7wuSljq16eCH5xSqGC817JzkmPPIoyUY=",
|
|
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.jnzcrwl049.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
132
|
"MindExecution.Plugins.PlanMaster.9m2x4npbvh.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
133
|
"MindExecution.Plugins.YouTube.1odbm6r8w6.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
-
"MindExecution.Shared.
|
|
134
|
+
"MindExecution.Shared.hind9h1jye.dll": "MindExecution.Shared.dll",
|
|
135
135
|
"MindExecution.Web.2dnmq1omrn.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.mdo1lzjvvp.dll": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
|
|
283
283
|
"MindExecution.Plugins.Concept.pkaelum0gw.dll": "sha256-Cfre2yKV0t9ZKaX+BgG2tOjMWB+CQibG8CdFOKBmBkM=",
|
|
284
284
|
"MindExecution.Plugins.PlanMaster.9m2x4npbvh.dll": "sha256-f+T0DDflG07kLAlbCCdR3vdETa6MqpO9zjm/Ljap58o=",
|
|
285
|
-
"MindExecution.Shared.
|
|
285
|
+
"MindExecution.Shared.hind9h1jye.dll": "sha256-SRX9ZwmDjfUuk7tE9x1MtjHfXfJpV2MNwMGRgEibps4=",
|
|
286
286
|
"MindExecution.Web.2dnmq1omrn.dll": "sha256-xh0vRcSdCVFoY4WCfM44H+GOu6ilChQFplonSqrv5aA="
|
|
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=20260614-remote-monitor-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-monitor-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-remote-monitor-trash-menu-v530" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-monitor-trash-menu-v530" />
|
|
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-monitor-
|
|
582
|
+
const scriptVersion = '20260614-remote-monitor-trash-menu-v530';
|
|
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": "2Gdn3JF+",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
|
-
"hash": "sha256-
|
|
125
|
+
"hash": "sha256-SdjTYIgIbQWWX5sXSsxiK0GbNA1xBmqMr1vi8mi8Bmc=",
|
|
126
126
|
"url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
@@ -442,8 +442,8 @@
|
|
|
442
442
|
"url": "_framework/MindExecution.Plugins.YouTube.1odbm6r8w6.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-SRX9ZwmDjfUuk7tE9x1MtjHfXfJpV2MNwMGRgEibps4=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.hind9h1jye.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"hash": "sha256-xh0vRcSdCVFoY4WCfM44H+GOu6ilChQFplonSqrv5aA=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-i+V2sAFG0ucr5fhJ8FwJqkzkAzdWOoAgzLejpgk/OvY=",
|
|
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-lknSN5yPPbdzBaXZmmxnxAD5N0YK03eueaI2ucZgBCs=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|