@mindexec/cli 0.2.169 → 0.2.171
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/css/mind-map-overrides.css +194 -0
- package/wwwroot/_framework/MindExecution.Core.te2oaei5ec.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.3zom09ir6j.dll → MindExecution.Kernel.n5peonkatw.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.bk23zzy6wc.dll → MindExecution.Plugins.Admin.5zyeb2m709.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.zwcvc8wufe.dll → MindExecution.Plugins.Business.jn5nc7okql.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.jjroz0y6yj.dll → MindExecution.Plugins.Concept.j3ndei56k5.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.jc0g7fvyzv.dll → MindExecution.Plugins.Directory.1argo44nph.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.dixluk75d8.dll → MindExecution.Plugins.PlanMaster.jx5e69sim0.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.xvia9xcwgo.dll → MindExecution.Plugins.YouTube.qqwd3lc6cn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.4f3q9uzs9j.dll → MindExecution.Shared.yykm4v7xnd.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.2fexfu7nw7.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/wwwroot/_framework/MindExecution.Core.asayb4hw1o.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.1clnmq4i83.dll +0 -0
package/package.json
CHANGED
|
@@ -442,6 +442,12 @@ body.is-panning .map-node-memo__icon-popover {
|
|
|
442
442
|
width: min(320px, calc(100vw - 32px));
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
+
.mindcanvas-toolbar-menu--skills {
|
|
446
|
+
width: min(390px, calc(100vw - 32px));
|
|
447
|
+
max-height: min(78vh, 680px);
|
|
448
|
+
overflow: auto;
|
|
449
|
+
}
|
|
450
|
+
|
|
445
451
|
.mindcanvas-toolbar-menu__title {
|
|
446
452
|
padding: 0 2px 2px;
|
|
447
453
|
color: #0f172a;
|
|
@@ -561,6 +567,148 @@ body.is-panning .map-node-memo__icon-popover {
|
|
|
561
567
|
text-transform: uppercase;
|
|
562
568
|
}
|
|
563
569
|
|
|
570
|
+
.mindcanvas-skill-picker {
|
|
571
|
+
display: grid;
|
|
572
|
+
gap: 6px;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.mindcanvas-skill-picker__item {
|
|
576
|
+
display: grid;
|
|
577
|
+
grid-template-columns: minmax(0, 1fr) 18px;
|
|
578
|
+
align-items: center;
|
|
579
|
+
gap: 8px;
|
|
580
|
+
width: 100%;
|
|
581
|
+
padding: 9px 10px;
|
|
582
|
+
border: 1px solid rgba(203, 213, 225, 0.82);
|
|
583
|
+
border-radius: 7px;
|
|
584
|
+
background: rgba(248, 250, 252, 0.92);
|
|
585
|
+
color: #334155;
|
|
586
|
+
text-align: left;
|
|
587
|
+
cursor: pointer;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.mindcanvas-skill-picker__item--active,
|
|
591
|
+
.mindcanvas-skill-picker__item:hover,
|
|
592
|
+
.mindcanvas-skill-picker__item:focus-visible {
|
|
593
|
+
border-color: rgba(96, 165, 250, 0.74);
|
|
594
|
+
background: rgba(239, 246, 255, 0.92);
|
|
595
|
+
color: #1d4ed8;
|
|
596
|
+
outline: none;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.mindcanvas-skill-picker__item span,
|
|
600
|
+
.mindcanvas-skill-form__summary {
|
|
601
|
+
display: grid;
|
|
602
|
+
gap: 2px;
|
|
603
|
+
min-width: 0;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.mindcanvas-skill-picker__item strong,
|
|
607
|
+
.mindcanvas-skill-form__summary strong {
|
|
608
|
+
font-size: 12px;
|
|
609
|
+
font-weight: 850;
|
|
610
|
+
line-height: 1.15;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.mindcanvas-skill-picker__item small,
|
|
614
|
+
.mindcanvas-skill-form__summary span {
|
|
615
|
+
color: #64748b;
|
|
616
|
+
font-size: 11px;
|
|
617
|
+
font-weight: 620;
|
|
618
|
+
line-height: 1.35;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.mindcanvas-skill-form {
|
|
622
|
+
display: grid;
|
|
623
|
+
gap: 8px;
|
|
624
|
+
padding-top: 7px;
|
|
625
|
+
border-top: 1px solid rgba(226, 232, 240, 0.9);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.mindcanvas-skill-form__field {
|
|
629
|
+
display: grid;
|
|
630
|
+
gap: 4px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.mindcanvas-skill-form__field > span {
|
|
634
|
+
color: #475569;
|
|
635
|
+
font-size: 10px;
|
|
636
|
+
font-weight: 820;
|
|
637
|
+
letter-spacing: 0;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.mindcanvas-skill-form__field input,
|
|
641
|
+
.mindcanvas-skill-form__field textarea {
|
|
642
|
+
width: 100%;
|
|
643
|
+
min-width: 0;
|
|
644
|
+
border: 1px solid rgba(203, 213, 225, 0.88);
|
|
645
|
+
border-radius: 7px;
|
|
646
|
+
background: rgba(255, 255, 255, 0.92);
|
|
647
|
+
color: #0f172a;
|
|
648
|
+
font-size: 12px;
|
|
649
|
+
font-weight: 650;
|
|
650
|
+
line-height: 1.35;
|
|
651
|
+
outline: none;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.mindcanvas-skill-form__field input {
|
|
655
|
+
height: 34px;
|
|
656
|
+
padding: 0 10px;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.mindcanvas-skill-form__field textarea {
|
|
660
|
+
resize: vertical;
|
|
661
|
+
min-height: 76px;
|
|
662
|
+
padding: 8px 10px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.mindcanvas-skill-form__field input:focus,
|
|
666
|
+
.mindcanvas-skill-form__field textarea:focus {
|
|
667
|
+
border-color: rgba(59, 130, 246, 0.82);
|
|
668
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.mindcanvas-skill-form__status {
|
|
672
|
+
padding: 7px 9px;
|
|
673
|
+
border-radius: 7px;
|
|
674
|
+
background: rgba(248, 250, 252, 0.92);
|
|
675
|
+
color: #475569;
|
|
676
|
+
font-size: 11px;
|
|
677
|
+
font-weight: 700;
|
|
678
|
+
line-height: 1.35;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.mindcanvas-skill-form__status--success {
|
|
682
|
+
background: rgba(236, 253, 245, 0.9);
|
|
683
|
+
color: #047857;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.mindcanvas-skill-form__status--warning {
|
|
687
|
+
background: rgba(255, 247, 237, 0.92);
|
|
688
|
+
color: #9a3412;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.mindcanvas-skill-form__run {
|
|
692
|
+
display: inline-flex;
|
|
693
|
+
align-items: center;
|
|
694
|
+
justify-content: center;
|
|
695
|
+
gap: 7px;
|
|
696
|
+
min-height: 36px;
|
|
697
|
+
border: 1px solid rgba(20, 184, 166, 0.38);
|
|
698
|
+
border-radius: 7px;
|
|
699
|
+
background: #0f8f7f;
|
|
700
|
+
color: white;
|
|
701
|
+
font-size: 12px;
|
|
702
|
+
font-weight: 850;
|
|
703
|
+
cursor: pointer;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.mindcanvas-skill-form__run:disabled {
|
|
707
|
+
cursor: not-allowed;
|
|
708
|
+
border-color: rgba(203, 213, 225, 0.84);
|
|
709
|
+
background: #cbd5e1;
|
|
710
|
+
}
|
|
711
|
+
|
|
564
712
|
.mindcanvas-node-toolbar::before,
|
|
565
713
|
.global-ai-input-shell::before {
|
|
566
714
|
content: '';
|
|
@@ -824,6 +972,52 @@ body.is-panning .map-node-memo__icon-popover {
|
|
|
824
972
|
color: rgba(148, 163, 184, 0.86);
|
|
825
973
|
}
|
|
826
974
|
|
|
975
|
+
.mindcanvas-skill-form {
|
|
976
|
+
border-top-color: rgba(71, 85, 105, 0.78);
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.mindcanvas-skill-picker__item {
|
|
980
|
+
border-color: rgba(71, 85, 105, 0.72);
|
|
981
|
+
background: rgba(30, 41, 59, 0.72);
|
|
982
|
+
color: rgba(226, 232, 240, 0.88);
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.mindcanvas-skill-picker__item--active,
|
|
986
|
+
.mindcanvas-skill-picker__item:hover,
|
|
987
|
+
.mindcanvas-skill-picker__item:focus-visible {
|
|
988
|
+
border-color: rgba(96, 165, 250, 0.42);
|
|
989
|
+
background: rgba(37, 99, 235, 0.2);
|
|
990
|
+
color: #bfdbfe;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.mindcanvas-skill-picker__item small,
|
|
994
|
+
.mindcanvas-skill-form__summary span,
|
|
995
|
+
.mindcanvas-skill-form__field > span {
|
|
996
|
+
color: rgba(203, 213, 225, 0.76);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.mindcanvas-skill-form__field input,
|
|
1000
|
+
.mindcanvas-skill-form__field textarea {
|
|
1001
|
+
border-color: rgba(71, 85, 105, 0.78);
|
|
1002
|
+
background: rgba(15, 23, 42, 0.58);
|
|
1003
|
+
color: #f8fafc;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.mindcanvas-skill-form__status {
|
|
1007
|
+
background: rgba(30, 41, 59, 0.74);
|
|
1008
|
+
color: rgba(203, 213, 225, 0.82);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.mindcanvas-skill-form__status--success {
|
|
1012
|
+
background: rgba(6, 78, 59, 0.38);
|
|
1013
|
+
color: #6ee7b7;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.mindcanvas-skill-form__status--warning {
|
|
1017
|
+
background: rgba(124, 45, 18, 0.32);
|
|
1018
|
+
color: #fdba74;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
827
1021
|
.global-ai-input-shell {
|
|
828
1022
|
border-color: rgba(71, 85, 105, 0.72) !important;
|
|
829
1023
|
background:
|
|
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-JCbjf1qv2j0vJHNTnD3Q1ATe3UeA0KwnDkNIU4CEVMw=",
|
|
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.te2oaei5ec.dll": "MindExecution.Core.dll",
|
|
127
|
+
"MindExecution.Kernel.n5peonkatw.dll": "MindExecution.Kernel.dll",
|
|
128
|
+
"MindExecution.Plugins.Admin.5zyeb2m709.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
|
+
"MindExecution.Plugins.Business.jn5nc7okql.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
+
"MindExecution.Plugins.Concept.j3ndei56k5.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
|
+
"MindExecution.Plugins.Directory.1argo44nph.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.jx5e69sim0.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.qqwd3lc6cn.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.yykm4v7xnd.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.2fexfu7nw7.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.te2oaei5ec.dll": "sha256-yzvF/UwfBMiJb2zQvlW0HSNU9VJeFPsgsB40BszINvc=",
|
|
282
|
+
"MindExecution.Kernel.n5peonkatw.dll": "sha256-JfXgzqcnjRbW+XlMja53/jDG+/10sNVp+2V4F8w9s+Q=",
|
|
283
|
+
"MindExecution.Plugins.Concept.j3ndei56k5.dll": "sha256-L9w4s1zohbMSXnxqVDSFbw4Qn7iQV2lbdyZKl98VfY4=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.jx5e69sim0.dll": "sha256-eSAg9lp6byLi2+lDlB5TIdRBpVS1viOfP6Ys+VCyMV0=",
|
|
285
|
+
"MindExecution.Shared.yykm4v7xnd.dll": "sha256-qiMr2daTqpEJJr/fNvc1C7KwXWb9oHKQgLoA7RcGcp8=",
|
|
286
|
+
"MindExecution.Web.2fexfu7nw7.dll": "sha256-Pp5EqyCnx8IBcVjF/cD8zXDo6i7zC8AQQtxz5qXyGxM="
|
|
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.5zyeb2m709.dll": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
|
|
290
|
+
"MindExecution.Plugins.Business.jn5nc7okql.dll": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
|
|
291
|
+
"MindExecution.Plugins.Directory.1argo44nph.dll": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
|
|
292
|
+
"MindExecution.Plugins.YouTube.qqwd3lc6cn.dll": "sha256-/oH3DKVYccnsdkwTAM//1MSyJQDCsbGWvYNkDRuzGM8="
|
|
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=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-skill-ui-v600" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-skill-ui-v600" />
|
|
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-skill-ui-v600';
|
|
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": "okvSWTbD",
|
|
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-VyGjzwCd9WoJ0gu1JXBtSoLcGDHgxgkAnE+q6Pcza0s=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -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-yzvF/UwfBMiJb2zQvlW0HSNU9VJeFPsgsB40BszINvc=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.te2oaei5ec.dll"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Kernel.
|
|
417
|
+
"hash": "sha256-JfXgzqcnjRbW+XlMja53/jDG+/10sNVp+2V4F8w9s+Q=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.n5peonkatw.dll"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
421
|
+
"hash": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.5zyeb2m709.dll"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
425
|
+
"hash": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.jn5nc7okql.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-L9w4s1zohbMSXnxqVDSFbw4Qn7iQV2lbdyZKl98VfY4=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.j3ndei56k5.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
433
|
+
"hash": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.1argo44nph.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-eSAg9lp6byLi2+lDlB5TIdRBpVS1viOfP6Ys+VCyMV0=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.jx5e69sim0.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-/oH3DKVYccnsdkwTAM//1MSyJQDCsbGWvYNkDRuzGM8=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.qqwd3lc6cn.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-qiMr2daTqpEJJr/fNvc1C7KwXWb9oHKQgLoA7RcGcp8=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.yykm4v7xnd.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-Pp5EqyCnx8IBcVjF/cD8zXDo6i7zC8AQQtxz5qXyGxM=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.2fexfu7nw7.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-QrUEaGJQOd/YpbUcxCpBv1/IaYxpxpfQqrZilgripfg=",
|
|
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-EII4T7BxjdPyROthZ8D8WjVz+5i2y1dcsUP6JehP0sI=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|