@mindexec/cli 0.2.455 → 0.2.456
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/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +4 -4
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-render-plan.js +25 -6
- package/wwwroot/_framework/{MindExecution.Core.3y861y22o4.dll → MindExecution.Core.glgqkah960.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.182clfthnx.dll → MindExecution.Kernel.1nb0zfmie1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.ghxhrm0vf5.dll → MindExecution.Plugins.Admin.4pdpv5q991.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.doimlros51.dll → MindExecution.Plugins.Business.jpl2k4nnhh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.hp54u7s3y5.dll → MindExecution.Plugins.Concept.rissr3n74r.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.wjfnb1nk3b.dll → MindExecution.Plugins.Directory.tkopeqv16k.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.447psj7gxo.dll → MindExecution.Plugins.PlanMaster.jmjftycwo4.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.7f551zknhn.dll → MindExecution.Plugins.YouTube.drj98vf3ti.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.aftyr3f4lo.dll → MindExecution.Shared.cbieupjmfp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.tkj3z0fg8f.dll → MindExecution.Web.xl8ygqgy0i.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +25 -25
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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 = '
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260801-wheel-dpr-stable-v866';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -6597,13 +6597,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6597
6597
|
this._preserveVisibleSetThisFrame = true;
|
|
6598
6598
|
}
|
|
6599
6599
|
// ?�▲??[Perf] ?�▲?? _profileSection('pipelineVisibilityPlan');
|
|
6600
|
-
const
|
|
6601
|
-
window.MindMapRenderPlan?.
|
|
6600
|
+
const shouldUseInteractiveCameraDpr =
|
|
6601
|
+
window.MindMapRenderPlan?.shouldUseInteractiveRendererDpr?.(this, {
|
|
6602
6602
|
isCameraMoving
|
|
6603
6603
|
}) === true;
|
|
6604
6604
|
const shouldUseInteractiveDpr =
|
|
6605
6605
|
isNodeInteracting === true ||
|
|
6606
|
-
|
|
6606
|
+
shouldUseInteractiveCameraDpr ||
|
|
6607
6607
|
this.isWindowResizing === true;
|
|
6608
6608
|
this._applyRendererPixelRatio(shouldUseInteractiveDpr);
|
|
6609
6609
|
_profileSection('pipelinePixelRatio');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(function () {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
const BUILD_ID = '
|
|
4
|
+
const BUILD_ID = '20260801-wheel-dpr-stable-v44';
|
|
5
5
|
const FRAME_SAMPLE_LIMIT = 240;
|
|
6
6
|
const INITIAL_LINE_TEXTURE_ROWS = 1024;
|
|
7
7
|
const GPU_WARM_RETRY_DELAY_MS = 120;
|
|
@@ -55,14 +55,26 @@
|
|
|
55
55
|
[CAMERA_ONLY_WEBGL_BLOCKERS.FullResGlVisual, 'fullres-gl-visual']
|
|
56
56
|
]);
|
|
57
57
|
|
|
58
|
-
function
|
|
58
|
+
function isWheelOnlyCameraNavigation(module) {
|
|
59
|
+
const hasWheelZoom = module?.isZooming === true || module?._wheelZoomBurstActive === true;
|
|
60
|
+
if (!hasWheelZoom) return false;
|
|
61
|
+
return !(
|
|
62
|
+
module?.isPanning === true ||
|
|
63
|
+
module?._panSmoothingActive === true ||
|
|
64
|
+
module?.isDraggingNode === true ||
|
|
65
|
+
module?.isDraggingMultipleNodes === true ||
|
|
66
|
+
module?.isResizing === true ||
|
|
67
|
+
module?.isWindowResizing === true
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function shouldUseInteractiveRendererDpr(module, frameState = null) {
|
|
72
|
+
const wheelOnlyCameraNavigation = isWheelOnlyCameraNavigation(module);
|
|
59
73
|
return !!(
|
|
60
|
-
frameState?.isCameraMoving === true ||
|
|
61
|
-
|
|
74
|
+
((frameState?.isCameraMoving === true || module?._cameraMovingThisFrame === true) &&
|
|
75
|
+
!wheelOnlyCameraNavigation) ||
|
|
62
76
|
module?.isPanning === true ||
|
|
63
|
-
module?._cameraMovingThisFrame === true ||
|
|
64
77
|
module?._panSmoothingActive === true ||
|
|
65
|
-
module?._wheelZoomBurstActive === true ||
|
|
66
78
|
module?.isDraggingNode === true ||
|
|
67
79
|
module?.isDraggingMultipleNodes === true ||
|
|
68
80
|
module?.isResizing === true ||
|
|
@@ -70,6 +82,12 @@
|
|
|
70
82
|
);
|
|
71
83
|
}
|
|
72
84
|
|
|
85
|
+
function isRendererDprInteractionActive(module, frameState = null) {
|
|
86
|
+
return shouldUseInteractiveRendererDpr(module, frameState) ||
|
|
87
|
+
module?.isZooming === true ||
|
|
88
|
+
module?._wheelZoomBurstActive === true;
|
|
89
|
+
}
|
|
90
|
+
|
|
73
91
|
function getCameraOnlyWebglBlockerMask(module, frameState = null) {
|
|
74
92
|
const renderer = module?.lodRenderer || null;
|
|
75
93
|
let blockers = 0;
|
|
@@ -1761,6 +1779,7 @@
|
|
|
1761
1779
|
window.MindMapRenderPlan = Object.freeze({
|
|
1762
1780
|
configureImageAtlasTexture,
|
|
1763
1781
|
getImageAtlasOutputColorChunk,
|
|
1782
|
+
shouldUseInteractiveRendererDpr,
|
|
1764
1783
|
isRendererDprInteractionActive,
|
|
1765
1784
|
getCameraOnlyWebglBlockerMask,
|
|
1766
1785
|
getCameraOnlyWebglBlockerNames,
|
package/wwwroot/_framework/{MindExecution.Core.3y861y22o4.dll → MindExecution.Core.glgqkah960.dll}
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.tkj3z0fg8f.dll → MindExecution.Web.xl8ygqgy0i.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-xrpgg0WSV+5FPaRZYMYM54+0x4V2xdxSkD/sl08GZOc=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -122,16 +122,16 @@
|
|
|
122
122
|
"System.brmz7yk5qh.dll": "System.dll",
|
|
123
123
|
"netstandard.b50t77veor.dll": "netstandard.dll",
|
|
124
124
|
"System.Private.CoreLib.g6ztz7cmo2.dll": "System.Private.CoreLib.dll",
|
|
125
|
-
"MindExecution.Core.
|
|
126
|
-
"MindExecution.Kernel.
|
|
127
|
-
"MindExecution.Plugins.Admin.
|
|
128
|
-
"MindExecution.Plugins.Business.
|
|
129
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
-
"MindExecution.Plugins.Directory.
|
|
131
|
-
"MindExecution.Plugins.PlanMaster.
|
|
132
|
-
"MindExecution.Plugins.YouTube.
|
|
133
|
-
"MindExecution.Shared.
|
|
134
|
-
"MindExecution.Web.
|
|
125
|
+
"MindExecution.Core.glgqkah960.dll": "MindExecution.Core.dll",
|
|
126
|
+
"MindExecution.Kernel.1nb0zfmie1.dll": "MindExecution.Kernel.dll",
|
|
127
|
+
"MindExecution.Plugins.Admin.4pdpv5q991.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
|
+
"MindExecution.Plugins.Business.jpl2k4nnhh.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
+
"MindExecution.Plugins.Concept.rissr3n74r.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.tkopeqv16k.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.jmjftycwo4.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.drj98vf3ti.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.cbieupjmfp.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.xl8ygqgy0i.dll": "MindExecution.Web.dll",
|
|
135
135
|
"dotnet.native.566r55w3xu.js": "dotnet.native.js",
|
|
136
136
|
"dotnet.native.x6q5aixc38.wasm": "dotnet.native.wasm",
|
|
137
137
|
"dotnet.js": "dotnet.js",
|
|
@@ -276,18 +276,18 @@
|
|
|
276
276
|
"System.Xml.XDocument.sn51jas17n.dll": "sha256-GNI2kFgFmPTwzuzwUn8gxK+AzGLUWRJFdg9JzIbrybQ=",
|
|
277
277
|
"System.brmz7yk5qh.dll": "sha256-CfM2miyj1KHApFmqMdLYWio3S/jrdON2pW9Xr2nTwlo=",
|
|
278
278
|
"netstandard.b50t77veor.dll": "sha256-//jQGOXjb8ET8WtXgOJrAxLx6E7zDJ5RjRRutwkvmxo=",
|
|
279
|
-
"MindExecution.Core.
|
|
280
|
-
"MindExecution.Kernel.
|
|
281
|
-
"MindExecution.Plugins.Business.
|
|
282
|
-
"MindExecution.Plugins.Concept.
|
|
283
|
-
"MindExecution.Plugins.PlanMaster.
|
|
284
|
-
"MindExecution.Shared.
|
|
285
|
-
"MindExecution.Web.
|
|
279
|
+
"MindExecution.Core.glgqkah960.dll": "sha256-hCIUVBtLW0I5UZhscyE6BnddKMUM/mbmaeSHga8LU6k=",
|
|
280
|
+
"MindExecution.Kernel.1nb0zfmie1.dll": "sha256-E0YhL2C3eHDi0wplaNIUv8eZN0gl8sgwH2QK8ONL7RQ=",
|
|
281
|
+
"MindExecution.Plugins.Business.jpl2k4nnhh.dll": "sha256-Zy6EQb2dzJpMtimTuXDWLyYZfnGszISas43Xnj0V08E=",
|
|
282
|
+
"MindExecution.Plugins.Concept.rissr3n74r.dll": "sha256-nWlZ8hpgklXe1fSWkGRxqza5PkFCg1imT0ucihQweBg=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.jmjftycwo4.dll": "sha256-G9awIg0n2etX44iV7Zk7gtFdUvx3Hln2Lsvb4atlPLk=",
|
|
284
|
+
"MindExecution.Shared.cbieupjmfp.dll": "sha256-OOavZX36oFI5tSj4AAQGunXRqk6FTr96LiiDqoMROjM=",
|
|
285
|
+
"MindExecution.Web.xl8ygqgy0i.dll": "sha256-FZiEOssxRTd0Rp/ESFXdKsffd4GJs9O6zxWV7AQHuHw="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
|
-
"MindExecution.Plugins.Admin.
|
|
289
|
-
"MindExecution.Plugins.Directory.
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
288
|
+
"MindExecution.Plugins.Admin.4pdpv5q991.dll": "sha256-aFu5J9R9NSy/NExkgms6ZnDbsy8psJuHuG+mkpkYi/0=",
|
|
289
|
+
"MindExecution.Plugins.Directory.tkopeqv16k.dll": "sha256-re6Unf9D5d9X39FY4D0e63vN7FHY+htKjG067AE2qXs=",
|
|
290
|
+
"MindExecution.Plugins.YouTube.drj98vf3ti.dll": "sha256-SWBvqDWrt5UmMtgsVcNt0CrmNCZM8sHiwh7ZrOYMiDQ="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -583,7 +583,7 @@
|
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
const base = '_content/MindExecution.Shared/js/';
|
|
586
|
-
const scriptVersion = '
|
|
586
|
+
const scriptVersion = '20260801-wheel-dpr-stable-v962';
|
|
587
587
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
588
588
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
589
589
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "bUTkiim7",
|
|
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-QG3UqMhXffrshn6LVKTP/StbWQ98KWULTeAAdRVBIDw=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"url": "_content/MindExecution.Shared/js/mind-map-remote-codecs.js"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
|
-
"hash": "sha256-
|
|
169
|
+
"hash": "sha256-IvXWHxNcyIS4QSS7ihRblwElCa33noSrKuukjnSITPs=",
|
|
170
170
|
"url": "_content/MindExecution.Shared/js/mind-map-render-plan.js"
|
|
171
171
|
},
|
|
172
172
|
{
|
|
@@ -430,44 +430,44 @@
|
|
|
430
430
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Core.
|
|
433
|
+
"hash": "sha256-hCIUVBtLW0I5UZhscyE6BnddKMUM/mbmaeSHga8LU6k=",
|
|
434
|
+
"url": "_framework/MindExecution.Core.glgqkah960.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Kernel.
|
|
437
|
+
"hash": "sha256-E0YhL2C3eHDi0wplaNIUv8eZN0gl8sgwH2QK8ONL7RQ=",
|
|
438
|
+
"url": "_framework/MindExecution.Kernel.1nb0zfmie1.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
441
|
+
"hash": "sha256-aFu5J9R9NSy/NExkgms6ZnDbsy8psJuHuG+mkpkYi/0=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.Admin.4pdpv5q991.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
445
|
+
"hash": "sha256-Zy6EQb2dzJpMtimTuXDWLyYZfnGszISas43Xnj0V08E=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.Business.jpl2k4nnhh.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
449
|
+
"hash": "sha256-nWlZ8hpgklXe1fSWkGRxqza5PkFCg1imT0ucihQweBg=",
|
|
450
|
+
"url": "_framework/MindExecution.Plugins.Concept.rissr3n74r.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
|
-
"hash": "sha256-
|
|
454
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
453
|
+
"hash": "sha256-re6Unf9D5d9X39FY4D0e63vN7FHY+htKjG067AE2qXs=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.Directory.tkopeqv16k.dll"
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
|
-
"hash": "sha256-
|
|
458
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
457
|
+
"hash": "sha256-G9awIg0n2etX44iV7Zk7gtFdUvx3Hln2Lsvb4atlPLk=",
|
|
458
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.jmjftycwo4.dll"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
|
-
"hash": "sha256-
|
|
462
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
461
|
+
"hash": "sha256-SWBvqDWrt5UmMtgsVcNt0CrmNCZM8sHiwh7ZrOYMiDQ=",
|
|
462
|
+
"url": "_framework/MindExecution.Plugins.YouTube.drj98vf3ti.dll"
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
|
-
"hash": "sha256-
|
|
466
|
-
"url": "_framework/MindExecution.Shared.
|
|
465
|
+
"hash": "sha256-OOavZX36oFI5tSj4AAQGunXRqk6FTr96LiiDqoMROjM=",
|
|
466
|
+
"url": "_framework/MindExecution.Shared.cbieupjmfp.dll"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
|
-
"hash": "sha256-
|
|
470
|
-
"url": "_framework/MindExecution.Web.
|
|
469
|
+
"hash": "sha256-FZiEOssxRTd0Rp/ESFXdKsffd4GJs9O6zxWV7AQHuHw=",
|
|
470
|
+
"url": "_framework/MindExecution.Web.xl8ygqgy0i.dll"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
473
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -786,7 +786,7 @@
|
|
|
786
786
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
787
787
|
},
|
|
788
788
|
{
|
|
789
|
-
"hash": "sha256-
|
|
789
|
+
"hash": "sha256-j20l76mElYJh8ZZ2GeZ+l772y0H3fb8uOONR3+6TQwo=",
|
|
790
790
|
"url": "_framework/blazor.boot.json"
|
|
791
791
|
},
|
|
792
792
|
{
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
"url": "icon-512.png"
|
|
863
863
|
},
|
|
864
864
|
{
|
|
865
|
-
"hash": "sha256-
|
|
865
|
+
"hash": "sha256-mWPSvnroN9PEzOvt5/vhpOSNRkLF2kcGWBO22FpcSH8=",
|
|
866
866
|
"url": "index.html"
|
|
867
867
|
},
|
|
868
868
|
{
|