@mindexec/cli 0.2.337 → 0.2.338
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
|
@@ -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-fullres-lod-no-motion-throttle-v822';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -141,8 +141,6 @@
|
|
|
141
141
|
'pipelinePixelRatio'
|
|
142
142
|
]);
|
|
143
143
|
const LOD_PAN_VISIBILITY_REFRESH_INTERVAL_MS = 120;
|
|
144
|
-
const FULL_RES_LOD_PAN_REFRESH_INTERVAL_MS = 96;
|
|
145
|
-
const FULL_RES_LOD_ZOOM_REFRESH_INTERVAL_MS = 48;
|
|
146
144
|
const CAMERA_LERP_BASE_FRAME_MS = 1000 / 60;
|
|
147
145
|
const CAMERA_KEYBOARD_PAN_LERP_60HZ = 1.0;
|
|
148
146
|
const CAMERA_MOUSE_PAN_LERP_60HZ = 1.0;
|
|
@@ -4398,7 +4396,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4398
4396
|
this._lastViewportWidth = 0;
|
|
4399
4397
|
this._lastViewportHeight = 0;
|
|
4400
4398
|
this._lastViewportDpr = 0;
|
|
4401
|
-
this._lastFullResLodRefreshAt = 0;
|
|
4402
4399
|
this.lastMousePos = { x: 0, y: 0 };
|
|
4403
4400
|
this.targetZ = null;
|
|
4404
4401
|
this.targetX = null;
|
|
@@ -9074,31 +9071,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
9074
9071
|
this.lodRenderer._lastResidentSkipReason = 'core-stable-resident';
|
|
9075
9072
|
}
|
|
9076
9073
|
} else {
|
|
9077
|
-
const fullResLodRefreshIntervalMs = this.isZooming === true
|
|
9078
|
-
? FULL_RES_LOD_ZOOM_REFRESH_INTERVAL_MS
|
|
9079
|
-
: FULL_RES_LOD_PAN_REFRESH_INTERVAL_MS;
|
|
9080
|
-
const shouldThrottleFullResLodDuringMotion =
|
|
9081
|
-
!isResidentMidFarLodFrame &&
|
|
9082
|
-
!hasNonPanForcedUpdate &&
|
|
9083
|
-
!isNodeInteracting &&
|
|
9084
|
-
!hasPendingNearCssWarmup &&
|
|
9085
|
-
!this.isWindowResizing &&
|
|
9086
|
-
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
9087
|
-
this.lodRenderer.willLodBandChange?.(this.camera) !== true &&
|
|
9088
|
-
(frameStart - Number(this._lastFullResLodRefreshAt || 0)) < fullResLodRefreshIntervalMs;
|
|
9089
9074
|
const shouldSkipStableResidentLodFrame =
|
|
9090
9075
|
isResidentMidFarLodFrame &&
|
|
9091
9076
|
this.lodRenderer.shouldSkipStableResidentFrame?.(this.camera, this) === true;
|
|
9092
|
-
if (
|
|
9093
|
-
lodUpdateSkippedThisFrame = true;
|
|
9094
|
-
lodUpdateSkipReason = 'fullres-motion-throttle';
|
|
9095
|
-
} else if (!shouldSkipStableResidentLodFrame) {
|
|
9077
|
+
if (!shouldSkipStableResidentLodFrame) {
|
|
9096
9078
|
lodUpdateCalledThisFrame = true;
|
|
9097
9079
|
this.lodRenderer.updateLOD(this.camera, this.nodeObjectsById, this);
|
|
9098
9080
|
lodUpdateBreakdownThisFrame = this.lodRenderer?._lastUpdateLodBreakdown || null;
|
|
9099
|
-
if (!isResidentMidFarLodFrame) {
|
|
9100
|
-
this._lastFullResLodRefreshAt = frameStart;
|
|
9101
|
-
}
|
|
9102
9081
|
} else {
|
|
9103
9082
|
lodUpdateSkippedThisFrame = true;
|
|
9104
9083
|
lodUpdateSkipReason = 'core-stable-resident';
|
|
@@ -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-fullres-lod-no-motion-throttle-v822';
|
|
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-fullres-lod-no-motion-throttle-v822" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-fullres-lod-no-motion-throttle-v822" />
|
|
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-fullres-lod-no-motion-throttle-v822';
|
|
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": "WeVEVHk3",
|
|
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-LOfXR93RxNzg9DNFDYZTgd9mjDYJ8eAWR6cyAi9fN/0=",
|
|
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-5F9mmMafjt8xKi0mGVEHhwqMttbPCzDd//aW+cW8Pm4=",
|
|
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-T8JJlMtnIp0O4CTKQwNsV1gn2gLF869CITLB/4n4MrY=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|