@mindexec/cli 0.2.458 → 0.2.460
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/desktop-workspace-state.cjs +120 -0
- package/electron/main.cjs +17 -6
- package/electron/source-smoke.mjs +21 -0
- package/electron/windows-package-smoke.mjs +8 -2
- package/package.json +6 -5
- package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/scripts/desktop-workspace-state-smoke.mjs +81 -0
- package/server.js +36 -16
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-animated-image-preview.js +270 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +106 -60
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +30 -26
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +94 -124
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +43 -21
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +45 -13
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-render-plan.js +117 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js +4 -1
- package/wwwroot/_framework/{MindExecution.Core.2ch68iyy8o.dll → MindExecution.Core.oqju650dkd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.dh617xfv36.dll → MindExecution.Kernel.7zjugdfmfg.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.0sm50hbae9.dll → MindExecution.Plugins.Admin.qln7lkmsnn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.3wq01orrbu.dll → MindExecution.Plugins.Business.rd6flxuebm.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.z8yl28fa2a.dll → MindExecution.Plugins.Concept.0qrgx3epss.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.m7murp5oes.dll → MindExecution.Plugins.Directory.4prauy9d1z.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.yuyrbpf0vh.dll → MindExecution.Plugins.PlanMaster.cobfta1p3l.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.rwxvn00rm2.dll → MindExecution.Plugins.YouTube.99bahbgkkr.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.r9k48iyijb.dll → MindExecution.Shared.sevaa4rgkp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.742aribkxm.dll → MindExecution.Web.coqh2ccnuk.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/app-icon-1024.png +0 -0
- package/wwwroot/apple-touch-icon.png +0 -0
- package/wwwroot/appsettings.json +81 -81
- package/wwwroot/favicon-32x32.png +0 -0
- package/wwwroot/favicon.ico +0 -0
- package/wwwroot/icon-192.png +0 -0
- package/wwwroot/icon-512.png +0 -0
- package/wwwroot/index.html +70 -46
- package/wwwroot/manifest.webmanifest +4 -4
- package/wwwroot/mindexec-favicon-v3.png +0 -0
- package/wwwroot/service-worker-assets.js +888 -880
- package/wwwroot/service-worker.js +1 -1
package/wwwroot/index.html
CHANGED
|
@@ -7,55 +7,85 @@
|
|
|
7
7
|
<title>MindExec | Business Execution OS for solo builders</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<meta name="theme-color" content="#
|
|
11
|
-
<link rel="icon" type="image/png" sizes="32x32" href="/mindexec-favicon-
|
|
12
|
-
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=
|
|
13
|
-
<link rel="manifest" href="manifest.webmanifest?v=
|
|
10
|
+
<meta name="theme-color" content="#f8fafc" />
|
|
11
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/mindexec-favicon-v3.png" />
|
|
12
|
+
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=20260815-app-icon-v2" />
|
|
13
|
+
<link rel="manifest" href="manifest.webmanifest?v=20260815-app-icon-v2" />
|
|
14
14
|
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260629-ai-task-flow-v863" />
|
|
15
15
|
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260629-mdm-shadow-v856" />
|
|
16
16
|
<!-- ??좎뜦堉??Font Awesome (local) ??좎뜦堉??-->
|
|
17
17
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
18
18
|
<!-- ??좎뜦堉??-->
|
|
19
19
|
<style>
|
|
20
|
+
html,
|
|
21
|
+
body {
|
|
22
|
+
margin: 0;
|
|
23
|
+
background: #f8fafc;
|
|
24
|
+
}
|
|
25
|
+
|
|
20
26
|
#app {
|
|
21
27
|
min-height: 100vh;
|
|
22
28
|
}
|
|
23
29
|
|
|
24
30
|
.app-static-fallback {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
position: fixed;
|
|
32
|
+
inset: 0;
|
|
33
|
+
z-index: 10;
|
|
34
|
+
box-sizing: border-box;
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
width: 100%;
|
|
39
|
+
margin: 0;
|
|
40
|
+
padding: 24px;
|
|
41
|
+
background: #f8fafc;
|
|
42
|
+
color: #64748b;
|
|
43
|
+
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
30
44
|
}
|
|
31
45
|
|
|
32
|
-
.app-
|
|
33
|
-
display:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
font-size: 12px;
|
|
39
|
-
font-weight: 700;
|
|
40
|
-
color: #334155;
|
|
46
|
+
.app-loading-shell {
|
|
47
|
+
display: flex;
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
align-items: center;
|
|
50
|
+
gap: 14px;
|
|
51
|
+
text-align: center;
|
|
41
52
|
}
|
|
42
53
|
|
|
43
|
-
.app-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
font-weight: 800;
|
|
54
|
+
.app-loading-shell__logo {
|
|
55
|
+
display: block;
|
|
56
|
+
width: 44px;
|
|
57
|
+
height: 44px;
|
|
48
58
|
}
|
|
49
59
|
|
|
50
|
-
.app-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
60
|
+
.app-loading-spinner {
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
width: 34px;
|
|
63
|
+
height: 34px;
|
|
64
|
+
border: 3px solid #dbe5f0;
|
|
65
|
+
border-top-color: #2563eb;
|
|
66
|
+
border-radius: 50%;
|
|
67
|
+
animation: app-loading-spin 720ms linear infinite;
|
|
54
68
|
}
|
|
55
69
|
|
|
56
|
-
.app-
|
|
57
|
-
|
|
58
|
-
|
|
70
|
+
.app-loading-shell__label,
|
|
71
|
+
.app-loading-shell__noscript {
|
|
72
|
+
margin: 0;
|
|
73
|
+
font-size: 13px;
|
|
74
|
+
line-height: 1.4;
|
|
75
|
+
font-weight: 600;
|
|
76
|
+
letter-spacing: 0.01em;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@keyframes app-loading-spin {
|
|
80
|
+
to {
|
|
81
|
+
transform: rotate(360deg);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@media (prefers-reduced-motion: reduce) {
|
|
86
|
+
.app-loading-spinner {
|
|
87
|
+
animation-duration: 1600ms;
|
|
88
|
+
}
|
|
59
89
|
}
|
|
60
90
|
|
|
61
91
|
#blazor-error-ui {
|
|
@@ -99,13 +129,14 @@
|
|
|
99
129
|
<div id="app-container">
|
|
100
130
|
<div id="app">
|
|
101
131
|
<article class="app-static-fallback" id="app-static-fallback">
|
|
102
|
-
<div class="app-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
132
|
+
<div class="app-loading-shell" role="status" aria-live="polite" aria-label="Loading MindCanvas">
|
|
133
|
+
<img class="app-loading-shell__logo" src="icon-192.png?v=20260815-app-icon-v2" alt="" aria-hidden="true" />
|
|
134
|
+
<div class="app-loading-spinner" aria-hidden="true"></div>
|
|
135
|
+
<p class="app-loading-shell__label">Loading MindCanvas…</p>
|
|
136
|
+
<noscript>
|
|
137
|
+
<p class="app-loading-shell__noscript">JavaScript is required to start MindCanvas.</p>
|
|
138
|
+
</noscript>
|
|
139
|
+
</div>
|
|
109
140
|
</article>
|
|
110
141
|
</div>
|
|
111
142
|
</div>
|
|
@@ -583,7 +614,7 @@
|
|
|
583
614
|
}
|
|
584
615
|
|
|
585
616
|
const base = '_content/MindExecution.Shared/js/';
|
|
586
|
-
const scriptVersion = '
|
|
617
|
+
const scriptVersion = '20260815-lod-grid-live-v973';
|
|
587
618
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
588
619
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
589
620
|
const criticalScripts = [
|
|
@@ -604,6 +635,7 @@
|
|
|
604
635
|
'mind-map-object-manager.js',
|
|
605
636
|
'mind-map-pipeline.js',
|
|
606
637
|
'mind-map-nodes.js',
|
|
638
|
+
'mind-map-animated-image-preview.js',
|
|
607
639
|
'mind-map-menu-manager.js',
|
|
608
640
|
'mind-map-multi-select.js',
|
|
609
641
|
'mind-map-interactions.js',
|
|
@@ -735,11 +767,3 @@
|
|
|
735
767
|
</body>
|
|
736
768
|
|
|
737
769
|
</html>
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
@@ -4,18 +4,18 @@
|
|
|
4
4
|
"id": "./",
|
|
5
5
|
"start_url": "./",
|
|
6
6
|
"display": "standalone",
|
|
7
|
-
"background_color": "#
|
|
8
|
-
"theme_color": "#
|
|
7
|
+
"background_color": "#f8fafc",
|
|
8
|
+
"theme_color": "#f8fafc",
|
|
9
9
|
"prefer_related_applications": false,
|
|
10
10
|
"icons": [
|
|
11
11
|
{
|
|
12
|
-
"src": "icon-512.png?v=
|
|
12
|
+
"src": "icon-512.png?v=20260815-app-icon-v2",
|
|
13
13
|
"type": "image/png",
|
|
14
14
|
"sizes": "512x512",
|
|
15
15
|
"purpose": "any maskable"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"src": "icon-192.png?v=
|
|
18
|
+
"src": "icon-192.png?v=20260815-app-icon-v2",
|
|
19
19
|
"type": "image/png",
|
|
20
20
|
"sizes": "192x192",
|
|
21
21
|
"purpose": "any maskable"
|
|
Binary file
|