@mindexec/cli 0.2.385 → 0.2.387
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-core.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +14 -6
- package/wwwroot/_framework/MindExecution.Web.dzsyj7ymko.dll +0 -0
- package/wwwroot/_framework/System.Private.Uri.4v999r551h.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +5 -5
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +9 -9
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/MindExecution.Web.82k6ktlkfg.dll +0 -0
- package/wwwroot/_framework/System.Private.Uri.zp9kmg0z93.dll +0 -0
package/package.json
CHANGED
|
@@ -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 = '20260627-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260627-midfar-soft-lod-v833';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
// ▲▲▲ [Usage] ▲▲▲
|
|
52
52
|
|
|
53
53
|
// Procedural line rendering settings
|
|
54
|
-
const LOD_RENDERER_BUILD_ID = '
|
|
54
|
+
const LOD_RENDERER_BUILD_ID = '20260627-midfar-soft-lod-v833';
|
|
55
55
|
const DirtyKind = Object.freeze({
|
|
56
56
|
ResidentFullRebuild: 'resident-full-rebuild',
|
|
57
57
|
ResidentPatch: 'resident-patch',
|
|
@@ -69,9 +69,10 @@
|
|
|
69
69
|
const LOD_TEXT_LINE_HALF_THICKNESS_SCREEN_PX = 0.68; // Normalize MID line stroke by screen pixels, not world units.
|
|
70
70
|
const LOD_NODE_BORDER_THICKNESS_SCREEN_PX = 1.25; // Keep MID/FAR resident node borders visually identical across bands and DPR/OS scaling.
|
|
71
71
|
const LOD_SELECTED_IMAGE_BORDER_THICKNESS_SCREEN_PX = 2.7; // Selected image cards keep a thicker but screen-space-stable outline.
|
|
72
|
-
const
|
|
73
|
-
const
|
|
74
|
-
const
|
|
72
|
+
const LOD_TEXT_LINE_OPACITY_MID = 0.42; // MID text silhouettes are overview hints, not readable document text.
|
|
73
|
+
const LOD_TEXT_LINE_OPACITY_FAR = 0.0; // FAR hides resident text lines by policy; keep the tone explicit for handoff paths.
|
|
74
|
+
const LOD_NODE_BORDER_OPACITY_MID = 0.52; // Keep MID card edges present without turning the overview into black document frames.
|
|
75
|
+
const LOD_NODE_BORDER_OPACITY_FAR = 0.38; // FAR edges recede further so distant boards read as spatial structure.
|
|
75
76
|
const LINE_DISABLE_THRESHOLD = 20000; // Disable line rendering above this instance count (Increased from 8500)
|
|
76
77
|
const POST_LOAD_LINE_RESTORE_DELAY_MS = 350; // Let the board settle before rebuilding expensive MID/FAR line silhouettes.
|
|
77
78
|
const POST_LOAD_LINE_RESTORE_NODE_THRESHOLD = 300; // Small boards can restore lines immediately without a visible spike.
|
|
@@ -2157,7 +2158,7 @@
|
|
|
2157
2158
|
uLineHeightPx: { value: LINE_HEIGHT_PX },
|
|
2158
2159
|
uLinePaddingPx: { value: LINE_PADDING_PX },
|
|
2159
2160
|
uLineHalfThicknessPx: { value: LOD_TEXT_LINE_HALF_THICKNESS_SCREEN_PX },
|
|
2160
|
-
uLineOpacity: { value:
|
|
2161
|
+
uLineOpacity: { value: LOD_TEXT_LINE_OPACITY_MID }
|
|
2161
2162
|
},
|
|
2162
2163
|
vertexShader: lineVertexShader,
|
|
2163
2164
|
fragmentShader: `
|
|
@@ -5434,10 +5435,13 @@
|
|
|
5434
5435
|
const mat = this.instancedMesh?.material;
|
|
5435
5436
|
const uniform = mat?.uniforms?.uShowFarInsetBorder;
|
|
5436
5437
|
const opacityUniform = mat?.uniforms?.uNodeBorderOpacity;
|
|
5437
|
-
|
|
5438
|
+
const lineMaterial = this.instancedLineMesh?.material || null;
|
|
5439
|
+
const lineOpacityUniform = lineMaterial?.uniforms?.uLineOpacity;
|
|
5440
|
+
if (!uniform && !opacityUniform && !lineOpacityUniform) return;
|
|
5438
5441
|
|
|
5439
5442
|
const nextValue = visible ? 1.0 : 0.0;
|
|
5440
5443
|
const nextOpacity = visible ? LOD_NODE_BORDER_OPACITY_FAR : LOD_NODE_BORDER_OPACITY_MID;
|
|
5444
|
+
const nextLineOpacity = visible ? LOD_TEXT_LINE_OPACITY_FAR : LOD_TEXT_LINE_OPACITY_MID;
|
|
5441
5445
|
let changed = false;
|
|
5442
5446
|
if (uniform && uniform.value !== nextValue) {
|
|
5443
5447
|
uniform.value = nextValue;
|
|
@@ -5450,6 +5454,10 @@
|
|
|
5450
5454
|
if (changed) {
|
|
5451
5455
|
mat.needsUpdate = true;
|
|
5452
5456
|
}
|
|
5457
|
+
if (lineOpacityUniform && lineOpacityUniform.value !== nextLineOpacity) {
|
|
5458
|
+
lineOpacityUniform.value = nextLineOpacity;
|
|
5459
|
+
lineMaterial.needsUpdate = true;
|
|
5460
|
+
}
|
|
5453
5461
|
}
|
|
5454
5462
|
|
|
5455
5463
|
_setInstancedHaloFarMode(lodBand) {
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-tgxACrQrtD0BfxRTVVlOSQCYa+jRKH5JBFfitl9nAqs=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"System.Net.WebSockets.6rt3n3gl2q.dll": "System.Net.WebSockets.dll",
|
|
91
91
|
"System.Numerics.Vectors.lbdzx8reja.dll": "System.Numerics.Vectors.dll",
|
|
92
92
|
"System.ObjectModel.yct1gdirzf.dll": "System.ObjectModel.dll",
|
|
93
|
-
"System.Private.Uri.
|
|
93
|
+
"System.Private.Uri.4v999r551h.dll": "System.Private.Uri.dll",
|
|
94
94
|
"System.Private.Xml.Linq.lgv2n0akl4.dll": "System.Private.Xml.Linq.dll",
|
|
95
95
|
"System.Private.Xml.dpsk8g304y.dll": "System.Private.Xml.dll",
|
|
96
96
|
"System.Reflection.Emit.ILGeneration.1tcuz2cmbk.dll": "System.Reflection.Emit.ILGeneration.dll",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"MindExecution.Plugins.PlanMaster.krn3jgvjpa.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
133
|
"MindExecution.Plugins.YouTube.5m53srfud6.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
134
|
"MindExecution.Shared.ojp3psugsm.dll": "MindExecution.Shared.dll",
|
|
135
|
-
"MindExecution.Web.
|
|
135
|
+
"MindExecution.Web.dzsyj7ymko.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",
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"System.Net.WebSockets.6rt3n3gl2q.dll": "sha256-YlzWANdvZmR2TNh+pwDr/mRAjS4lz6WlVUdH+heHfF8=",
|
|
248
248
|
"System.Numerics.Vectors.lbdzx8reja.dll": "sha256-z8A6piqW2OKCN4Cuankssvqw0+q7ThE8AHx7AvBm6Dw=",
|
|
249
249
|
"System.ObjectModel.yct1gdirzf.dll": "sha256-HnFrODX5ztKwW74m87ZeWGNTbuFUDscX/uToF9t1hms=",
|
|
250
|
-
"System.Private.Uri.
|
|
250
|
+
"System.Private.Uri.4v999r551h.dll": "sha256-MB8kD4MSWVtneMtZ06c8cKXJCO/EBXrSY3H535KTU9o=",
|
|
251
251
|
"System.Private.Xml.Linq.lgv2n0akl4.dll": "sha256-xSLYpQ+LqC4Ej8UYtctd6B2SNTpnhBmqclQ5GA68bzg=",
|
|
252
252
|
"System.Private.Xml.dpsk8g304y.dll": "sha256-UUaffKq+vtw8rIk+Lpro47hoFsPfCYwPWNQdxYg1hSQ=",
|
|
253
253
|
"System.Reflection.Emit.ILGeneration.1tcuz2cmbk.dll": "sha256-q9iaFiGMcSfA5+vEhgS9Mr8xWQ+3qd++zbduoZvhJzU=",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"MindExecution.Plugins.Concept.l9z9tx9svt.dll": "sha256-N/QoILmTilvX5Zo4SCy7ENTCqMzSC6RIEQlEwtxkGPo=",
|
|
285
285
|
"MindExecution.Plugins.PlanMaster.krn3jgvjpa.dll": "sha256-8IFpm/2fpsWD3syyl58LTSWSGC8PfcrsLdmmSKR1Sq0=",
|
|
286
286
|
"MindExecution.Shared.ojp3psugsm.dll": "sha256-FC0pE2bsyE9i7GNSXCghKULaYYZXUEdepb2VxPfcYaA=",
|
|
287
|
-
"MindExecution.Web.
|
|
287
|
+
"MindExecution.Web.dzsyj7ymko.dll": "sha256-OdZXyYdWdrl/TeBZ49CoqL6ypZOppzWOdDoBoLqEL0Q="
|
|
288
288
|
},
|
|
289
289
|
"lazyAssembly": {
|
|
290
290
|
"MindExecution.Plugins.Admin.uuf238xa0h.dll": "sha256-OrCIUack8nSWBBiZK65DlJ3YGM677RAA8cX/oJjhm5c=",
|
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=20260627-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260627-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260627-local-oauth-v834" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260627-local-oauth-v834" />
|
|
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 = '20260627-
|
|
582
|
+
const scriptVersion = '20260627-local-oauth-v834';
|
|
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": "DoDTQuVw",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-YPf7F0tNZE2Z0HpOVFTLiOlwi7ymhLiFS/rD8fPEqog=",
|
|
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-qstMO9Bxs+AMfNADHl7cFYONcw204pXFH+mMQfRFgqo=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -446,8 +446,8 @@
|
|
|
446
446
|
"url": "_framework/MindExecution.Shared.ojp3psugsm.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-OdZXyYdWdrl/TeBZ49CoqL6ypZOppzWOdDoBoLqEL0Q=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.dzsyj7ymko.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -638,8 +638,8 @@
|
|
|
638
638
|
"url": "_framework/System.Private.CoreLib.c1dbswx1b2.dll"
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
|
-
"hash": "sha256-
|
|
642
|
-
"url": "_framework/System.Private.Uri.
|
|
641
|
+
"hash": "sha256-MB8kD4MSWVtneMtZ06c8cKXJCO/EBXrSY3H535KTU9o=",
|
|
642
|
+
"url": "_framework/System.Private.Uri.4v999r551h.dll"
|
|
643
643
|
},
|
|
644
644
|
{
|
|
645
645
|
"hash": "sha256-xSLYpQ+LqC4Ej8UYtctd6B2SNTpnhBmqclQ5GA68bzg=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-2DAio8eD3aSoIVeO9cZQXixSM596yjsEO2SxNwXdkrQ=",
|
|
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-C8LPQEJ5OYzaY8ZsPX58YFIWWbe5UCLVRZuNUJUY2VE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|