@mindexec/cli 0.2.334 → 0.2.336
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 +13 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +24 -4
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +1 -1
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +5 -5
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -3591,6 +3591,19 @@ html body .css3d-resolution-wrapper:not(.lod-low) {
|
|
|
3591
3591
|
0 0 50px rgba(15, 23, 42, 0.08) !important;
|
|
3592
3592
|
}
|
|
3593
3593
|
|
|
3594
|
+
/* Keep the settled full-res edge visually stable with the motion/low-detail shell.
|
|
3595
|
+
Use outline instead of border so the CSS3D hit geometry and layout stay unchanged. */
|
|
3596
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-text,
|
|
3597
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-markdown,
|
|
3598
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-note,
|
|
3599
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-code,
|
|
3600
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-memo,
|
|
3601
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-agent,
|
|
3602
|
+
html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-automation {
|
|
3603
|
+
outline: 1px solid var(--mind-node-static-edge) !important;
|
|
3604
|
+
outline-offset: 0 !important;
|
|
3605
|
+
}
|
|
3606
|
+
|
|
3594
3607
|
html body .css3d-resolution-wrapper:not(.lod-low).selected,
|
|
3595
3608
|
html body .css3d-resolution-wrapper:not(.lod-low).selection-style-agent.selected {
|
|
3596
3609
|
outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
const DEBUG = false;
|
|
6
6
|
const FPS_DEBUG = false;
|
|
7
7
|
const FRAME_PERF_DEBUG = false;
|
|
8
|
-
const MINDMAP_CORE_BUILD_ID = '20260621-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260621-high-detail-static-edge-v820';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -933,9 +933,29 @@
|
|
|
933
933
|
}
|
|
934
934
|
|
|
935
935
|
const rotation = camera.rotation || {};
|
|
936
|
-
|
|
937
|
-
Math.abs(Number(rotation.y || 0))
|
|
938
|
-
Math.abs(Number(rotation.z || 0))
|
|
936
|
+
if (Math.abs(Number(rotation.x || 0)) > 1e-5 ||
|
|
937
|
+
Math.abs(Number(rotation.y || 0)) > 1e-5 ||
|
|
938
|
+
Math.abs(Number(rotation.z || 0)) > 1e-5) {
|
|
939
|
+
return false;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
return hasUnsafeVisibleCss3dFlatCameraSurface(module) !== true;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
function hasUnsafeVisibleCss3dFlatCameraSurface(module) {
|
|
946
|
+
const visibleEntries = collectVisibleCss3dEntriesForSettledFlatScene(module);
|
|
947
|
+
const entries = visibleEntries.entries;
|
|
948
|
+
if (!Array.isArray(entries) || entries.length === 0) {
|
|
949
|
+
return false;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
for (const entry of entries) {
|
|
953
|
+
if (isCss3dEntryUnsafeForSettledFlatScene(entry) === true) {
|
|
954
|
+
return true;
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
return false;
|
|
939
959
|
}
|
|
940
960
|
|
|
941
961
|
function isCss3dEntryRenderableForFlatScene(entry) {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
// ▲▲▲ [Usage] ▲▲▲
|
|
52
52
|
|
|
53
53
|
// Procedural line rendering settings
|
|
54
|
-
const LOD_RENDERER_BUILD_ID = '20260621-
|
|
54
|
+
const LOD_RENDERER_BUILD_ID = '20260621-high-detail-static-edge-v820';
|
|
55
55
|
const DirtyKind = Object.freeze({
|
|
56
56
|
ResidentFullRebuild: 'resident-full-rebuild',
|
|
57
57
|
ResidentPatch: 'resident-patch',
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
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
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-high-detail-static-edge-v820" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-high-detail-static-edge-v820" />
|
|
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 = '20260621-
|
|
582
|
+
const scriptVersion = '20260621-high-detail-static-edge-v820';
|
|
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": "4OoECYQK",
|
|
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-P+3Fqot0ueuEG0NuHOGF41810vNn99mxuTVzoLm/Jv4=",
|
|
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-QiCtj+pVotHqRPp2E0tvXWEkKrM9DCG2O9diN9gDNC8=",
|
|
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-4KCltkq5C3X4HS2vksqXncmh4qXF5IM4ohOKVaLe7h4=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-pUkdNzCDIoX+QfYpPRsOtT5IF7UteaYv7g1uA2KORVM=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|