@mindexec/cli 0.2.275 → 0.2.276
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-interactions.js +23 -24
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +4 -4
- package/wwwroot/service-worker.js +1 -1
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-v724';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -6045,6 +6045,23 @@ window.MindMapInteractions = (function () {
|
|
|
6045
6045
|
return wheelBuffers.get(module);
|
|
6046
6046
|
}
|
|
6047
6047
|
|
|
6048
|
+
function getWheelTimestamp() {
|
|
6049
|
+
return typeof performance !== 'undefined' && typeof performance.now === 'function'
|
|
6050
|
+
? performance.now()
|
|
6051
|
+
: Date.now();
|
|
6052
|
+
}
|
|
6053
|
+
|
|
6054
|
+
function markCanvasWheelActivity(module, now = 0) {
|
|
6055
|
+
if (!module) {
|
|
6056
|
+
return 0;
|
|
6057
|
+
}
|
|
6058
|
+
|
|
6059
|
+
const wheelNow = Number(now || 0) > 0 ? Number(now) : getWheelTimestamp();
|
|
6060
|
+
module._lastCanvasWheelAt = wheelNow;
|
|
6061
|
+
window.__mindMapLastCanvasWheelAt = wheelNow;
|
|
6062
|
+
return wheelNow;
|
|
6063
|
+
}
|
|
6064
|
+
|
|
6048
6065
|
function scheduleWheelZoomFrame(module, wheelBuffer, callback) {
|
|
6049
6066
|
if (!module || !wheelBuffer || wheelBuffer.pending === true) {
|
|
6050
6067
|
return;
|
|
@@ -6325,6 +6342,7 @@ window.MindMapInteractions = (function () {
|
|
|
6325
6342
|
return;
|
|
6326
6343
|
}
|
|
6327
6344
|
|
|
6345
|
+
markCanvasWheelActivity(module);
|
|
6328
6346
|
performCameraZoomBuffered(module, accumulatedDeltaY, clientX, clientY);
|
|
6329
6347
|
});
|
|
6330
6348
|
}
|
|
@@ -6709,23 +6727,19 @@ window.MindMapInteractions = (function () {
|
|
|
6709
6727
|
return false;
|
|
6710
6728
|
}
|
|
6711
6729
|
|
|
6712
|
-
function onWheel(module, e) {
|
|
6713
|
-
const wheelNow = typeof performance !== 'undefined' && typeof performance.now === 'function'
|
|
6714
|
-
? performance.now()
|
|
6715
|
-
: Date.now();
|
|
6730
|
+
function onWheel(module, e, options = {}) {
|
|
6716
6731
|
const wheelAnalysis = getWheelEventAnalysis(module, e);
|
|
6717
6732
|
const shouldRouteWheelToZoom =
|
|
6718
6733
|
wheelAnalysis.isSyntheticTrackpadPinch === true ||
|
|
6719
6734
|
shouldZoomFromWheelEvent(module, e, wheelAnalysis);
|
|
6720
6735
|
|
|
6721
6736
|
if (shouldRouteWheelToZoom) {
|
|
6722
|
-
module._lastCanvasWheelAt = wheelNow;
|
|
6723
|
-
window.__mindMapLastCanvasWheelAt = wheelNow;
|
|
6724
6737
|
if (WHEEL_DEBUG) {
|
|
6725
6738
|
if (!module._wheelDebug) {
|
|
6726
6739
|
module._wheelDebug = { count: 0, lastLog: 0 };
|
|
6727
6740
|
}
|
|
6728
6741
|
module._wheelDebug.count++;
|
|
6742
|
+
const wheelNow = getWheelTimestamp();
|
|
6729
6743
|
if (wheelNow - module._wheelDebug.lastLog > 1000) {
|
|
6730
6744
|
console.log(`[Wheel Debug] Events in last second: ${module._wheelDebug.count}, deltaY: ${e.deltaY.toFixed(1)}`);
|
|
6731
6745
|
module._wheelDebug.count = 0;
|
|
@@ -6743,14 +6757,13 @@ window.MindMapInteractions = (function () {
|
|
|
6743
6757
|
return;
|
|
6744
6758
|
}
|
|
6745
6759
|
|
|
6746
|
-
if (
|
|
6760
|
+
if (options?.bypassMountedEmbedOwner !== true &&
|
|
6747
6761
|
shouldLetMountedEmbedOwnEvent(module, e.target, e)) {
|
|
6748
6762
|
e.stopPropagation();
|
|
6749
6763
|
return;
|
|
6750
6764
|
}
|
|
6751
6765
|
|
|
6752
|
-
|
|
6753
|
-
window.__mindMapLastCanvasWheelAt = wheelNow;
|
|
6766
|
+
const wheelNow = markCanvasWheelActivity(module);
|
|
6754
6767
|
|
|
6755
6768
|
if (WHEEL_DEBUG) {
|
|
6756
6769
|
if (!module._wheelDebug) {
|
|
@@ -6796,21 +6809,7 @@ window.MindMapInteractions = (function () {
|
|
|
6796
6809
|
return;
|
|
6797
6810
|
}
|
|
6798
6811
|
|
|
6799
|
-
|
|
6800
|
-
e.__mindMapBypassMountedEmbedOwner = true;
|
|
6801
|
-
try {
|
|
6802
|
-
onWheel(module, e);
|
|
6803
|
-
} finally {
|
|
6804
|
-
if (previousBypass === undefined) {
|
|
6805
|
-
try {
|
|
6806
|
-
delete e.__mindMapBypassMountedEmbedOwner;
|
|
6807
|
-
} catch {
|
|
6808
|
-
e.__mindMapBypassMountedEmbedOwner = undefined;
|
|
6809
|
-
}
|
|
6810
|
-
} else {
|
|
6811
|
-
e.__mindMapBypassMountedEmbedOwner = previousBypass;
|
|
6812
|
-
}
|
|
6813
|
-
}
|
|
6812
|
+
onWheel(module, e, { bypassMountedEmbedOwner: true });
|
|
6814
6813
|
}
|
|
6815
6814
|
|
|
6816
6815
|
function shouldTreatWheelAsZoom(module, e) {
|
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-v724" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v724" />
|
|
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-v724';
|
|
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": "e8mQ3t9N",
|
|
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-J87VtGRXcrl4n7dBqmVm7QxiKHC0aDXDdxlB9iXWK1g=",
|
|
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-
|
|
109
|
+
"hash": "sha256-v66z+kBA+ob3JHBGielrNVQDU1t3t0UPpQnUoNmFKyQ=",
|
|
110
110
|
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256
|
|
837
|
+
"hash": "sha256-+yTDlXxSRvTFQrnpXuZZ+lvX5ucyHM/lQvKsvVbgZao=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|