@mindexec/cli 0.2.268 → 0.2.269
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 = '20260620-css3d-flat-wheel-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v717';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -1327,7 +1327,7 @@
|
|
|
1327
1327
|
module._framePathStats = stats;
|
|
1328
1328
|
}
|
|
1329
1329
|
|
|
1330
|
-
function recordCameraMotionFastPathStatus(module, status, reason, details =
|
|
1330
|
+
function recordCameraMotionFastPathStatus(module, status, reason, details = null) {
|
|
1331
1331
|
if (!module) {
|
|
1332
1332
|
return;
|
|
1333
1333
|
}
|
|
@@ -1335,11 +1335,19 @@
|
|
|
1335
1335
|
const previous = module._cameraMotionFastPathStatus || null;
|
|
1336
1336
|
const normalizedStatus = String(status || '').trim() || 'unknown';
|
|
1337
1337
|
const normalizedReason = String(reason || '').trim() || normalizedStatus;
|
|
1338
|
-
|
|
1338
|
+
if (previous &&
|
|
1339
1339
|
previous.status === normalizedStatus &&
|
|
1340
|
-
previous.reason === normalizedReason
|
|
1341
|
-
|
|
1342
|
-
|
|
1340
|
+
previous.reason === normalizedReason) {
|
|
1341
|
+
previous.count = Number(previous.count || 0) + 1;
|
|
1342
|
+
if (details && module.renderDebugFlags?.enableFramePerfProbe === true) {
|
|
1343
|
+
previous.details = details;
|
|
1344
|
+
previous.updatedAt = typeof performance !== 'undefined' && typeof performance.now === 'function'
|
|
1345
|
+
? performance.now()
|
|
1346
|
+
: Date.now();
|
|
1347
|
+
}
|
|
1348
|
+
return;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1343
1351
|
const updatedAt = typeof performance !== 'undefined' && typeof performance.now === 'function'
|
|
1344
1352
|
? performance.now()
|
|
1345
1353
|
: Date.now();
|
|
@@ -1347,8 +1355,8 @@
|
|
|
1347
1355
|
module._cameraMotionFastPathStatus = {
|
|
1348
1356
|
status: normalizedStatus,
|
|
1349
1357
|
reason: normalizedReason,
|
|
1350
|
-
count,
|
|
1351
|
-
details,
|
|
1358
|
+
count: 1,
|
|
1359
|
+
details: details || null,
|
|
1352
1360
|
updatedAt
|
|
1353
1361
|
};
|
|
1354
1362
|
}
|
|
@@ -5561,9 +5569,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5561
5569
|
this.setLocalSnapGridClientPoint?.(Number(clientX), Number(clientY));
|
|
5562
5570
|
}
|
|
5563
5571
|
|
|
5564
|
-
recordCameraMotionFastPathStatus(this, 'hit', 'ua-wheel-zoom-direct'
|
|
5565
|
-
coalescedWheelEvents: Number(options?.coalescedWheelEvents || 0)
|
|
5566
|
-
});
|
|
5572
|
+
recordCameraMotionFastPathStatus(this, 'hit', 'ua-wheel-zoom-direct');
|
|
5567
5573
|
|
|
5568
5574
|
this._cursorDomDeferredForMotion = true;
|
|
5569
5575
|
|
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=20260620-css3d-flat-wheel-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v717" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v717" />
|
|
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 = '20260620-css3d-flat-wheel-
|
|
582
|
+
const scriptVersion = '20260620-css3d-flat-wheel-v717';
|
|
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": "/7T5wh84",
|
|
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-Ikvk4We4OWmiVUpNYw1cLxJ2rG5jF8Ywn2jYMmIAfUw=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-hImUdqfR91Khdb59Xs20+qDOhbAcjjuT67jpBtox6lU=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|