@mindexec/cli 0.2.320 → 0.2.322

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.320",
3
+ "version": "0.2.322",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -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-pan-hit-edge-v804';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-ref-normal-text-v806';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -1335,7 +1335,8 @@ window.MindMapInteractions = (function () {
1335
1335
 
1336
1336
  // LOD 모드(MID/FAR)인 경우 CSS3D를 즉시 숨김
1337
1337
  const cameraZ = module.camera?.position?.z || 0;
1338
- const isInLodMode = cameraZ >= 5000; // LOD_THRESHOLDS.MID = 5000
1338
+ const lodThreshold = Number(window.LODRenderer?.LOD_THRESHOLDS?.MID ?? window.LODRenderer?.LOD_THRESHOLD_NEAR ?? 12000);
1339
+ const isInLodMode = cameraZ >= lodThreshold;
1339
1340
 
1340
1341
  if (isInLodMode && module.lodRenderer) {
1341
1342
  // CSS3D 즉시 숨김
@@ -7577,7 +7578,8 @@ window.MindMapInteractions = (function () {
7577
7578
 
7578
7579
  // LOD 모드(MID/FAR)인 경우 CSS3D를 즉시 숨김
7579
7580
  const cameraZ = module.camera?.position?.z || 0;
7580
- const isInLodMode = cameraZ >= 5000; // LOD_THRESHOLDS.MID = 5000
7581
+ const lodThreshold = Number(window.LODRenderer?.LOD_THRESHOLDS?.MID ?? window.LODRenderer?.LOD_THRESHOLD_NEAR ?? 12000);
7582
+ const isInLodMode = cameraZ >= lodThreshold;
7581
7583
 
7582
7584
  if (isInLodMode && module.lodRenderer) {
7583
7585
  // CSS3D 즉시 숨김
@@ -13,13 +13,13 @@
13
13
  // LOD thresholds (explicit bands)
14
14
  const LOD_THRESHOLDS = {
15
15
  NEAR: 4500, // ~4500: DOM overlay + CSS3D
16
- NORMAL: 4500, // Legacy alias; NORMAL no longer keeps a scaled CSS3D band.
17
- MID: 4500, // 4500~30000: resident instanced nodes + line silhouettes
16
+ NORMAL: 12000, // 4500~12000: CSS3D only
17
+ MID: 12000, // 12000~30000: instanced text lines + nodes
18
18
  FAR: 30000 // 30000~: nodes only (lines hidden)
19
19
  };
20
-
21
- // Backward-compatible pivot (used by legacy LOD switch)
22
- const LOD_THRESHOLD_FAR = LOD_THRESHOLDS.MID; // Switch to resident LOD past this
20
+
21
+ // Backward-compatible pivot (used by legacy LOD switch)
22
+ const LOD_THRESHOLD_FAR = LOD_THRESHOLDS.MID; // Switch to LOD past this
23
23
  const LOD_THRESHOLD_NEAR = LOD_THRESHOLDS.MID; // Switch to full-res before this
24
24
  function isDocumentHidden() {
25
25
  return typeof document !== 'undefined' && document.visibilityState === 'hidden';
@@ -45,13 +45,13 @@
45
45
  }
46
46
  return 'NEAR';
47
47
  }
48
-
48
+
49
49
  // ▼▼▼ [Usage] Distance Threshold for Titles ▼▼▼
50
50
  const TITLE_VISIBLE_DISTANCE = 600; // Only show titles when camera is VERY close (Zoom Level 1~2)
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-pan-hit-edge-v804';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-ref-normal-text-v806';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -4529,7 +4529,7 @@
4529
4529
  }
4530
4530
 
4531
4531
  _restoreVisibleCss3dHighDetailForNear(nodeObjectsById, module, lodBand) {
4532
- if (lodBand !== 'NEAR' || !nodeObjectsById) {
4532
+ if ((lodBand !== 'NEAR' && lodBand !== 'NORMAL') || !nodeObjectsById) {
4533
4533
  return 0;
4534
4534
  }
4535
4535
 
@@ -4558,7 +4558,7 @@
4558
4558
  _shouldUseHighCss3dDetail(entry, module) {
4559
4559
  const cameraZ = Number(module?.camera?.position?.z || 0);
4560
4560
  const cameraBand = getLodBandForCameraZ(cameraZ);
4561
- if (cameraBand === 'NEAR') {
4561
+ if (cameraBand === 'NEAR' || cameraBand === 'NORMAL') {
4562
4562
  return true;
4563
4563
  }
4564
4564
 
@@ -6016,7 +6016,7 @@
6016
6016
 
6017
6017
  } else {
6018
6018
  perfTime('fullResSetup', () => {
6019
- // Full-res: NEAR only. NORMAL is intentionally collapsed into resident MID.
6019
+ // Full-res: NEAR / NORMAL. MID/FAR use resident instances.
6020
6020
  const tNearStart = performance.now();
6021
6021
  if (this.instancedHaloMesh) this.instancedHaloMesh.visible = false;
6022
6022
  if (this.instancedConsoleMesh) this.instancedConsoleMesh.visible = false;
@@ -265,8 +265,8 @@
265
265
  const cameraZ = Number(module?.camera?.position?.z || 0);
266
266
  const thresholds = globalThis.LODRenderer?.LOD_THRESHOLDS || {
267
267
  NEAR: 4500,
268
- NORMAL: 4500,
269
- MID: 4500,
268
+ NORMAL: 12000,
269
+ MID: 12000,
270
270
  FAR: 30000
271
271
  };
272
272
 
@@ -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-pan-hit-edge-v804" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-pan-hit-edge-v804" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-ref-normal-text-v806" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-ref-normal-text-v806" />
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-pan-hit-edge-v804';
582
+ const scriptVersion = '20260621-ref-normal-text-v806';
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": "uewacM8C",
2
+ "version": "h2N4zsBb",
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-De3oGUcCz1l28Dy2LZ0e6uDABVhEO2YwZXBEoOwaCNc=",
81
+ "hash": "sha256-NeodpRxFhWUQ5uJ1tGUP42yVBmJAfr5ygK8iPP1wRBM=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-tU6TgB0yR2ft8+e/QouGtynlKONttkjzO8LQ+7q+58I=",
109
+ "hash": "sha256-1taPMgvVhV1m1iz9G0GYUmAyJ4jhfrVOjlvWJTZK8wQ=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-TDIjpVzBHnG856/WqhrhIIC/Iysim7DMMzfuADfMttc=",
117
+ "hash": "sha256-XDXKNiOzFQQtJE1BvDAfmMrTsJ9ZVJZRSYxwPXttBkA=",
118
118
  "url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
119
119
  },
120
120
  {
@@ -154,7 +154,7 @@
154
154
  "url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
155
155
  },
156
156
  {
157
- "hash": "sha256-sZTTl62peGAqDd9+m/YczR9wkdC+HObxfPq019dwLDA=",
157
+ "hash": "sha256-DhBdiSTdzfLDAMOfZxvOyv9WX2PUCswiScye6gg29tE=",
158
158
  "url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
159
159
  },
160
160
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-gXujsMcnTgC0zCfaon0DxzTxdhaDhSqWtl/RchE8dx4=",
837
+ "hash": "sha256-RdaYIICsA59MIEb4l8DaD5JUAuA4Dsewh5NcJCQrR3I=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: uewacM8C */
1
+ /* Manifest version: h2N4zsBb */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4