@mindexec/cli 0.2.440 → 0.2.442
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/MacScreenCaptureKitH264.swift +339 -0
- package/remote-fast/osx-arm64/MacSystemAudioCapture.swift +214 -0
- package/remote-fast/osx-arm64/UnixRawCaptureHelper.mjs +80 -0
- package/remote-fast/osx-arm64/livedesk-raw-capture-resampler.mjs +73 -0
- package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/MacScreenCaptureKitH264.swift +339 -0
- package/remote-fast/osx-x64/MacSystemAudioCapture.swift +214 -0
- package/remote-fast/osx-x64/UnixRawCaptureHelper.mjs +80 -0
- package/remote-fast/osx-x64/livedesk-raw-capture-resampler.mjs +73 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/NAudio.Asio.dll +0 -0
- package/remote-fast/win-x64/NAudio.Core.dll +0 -0
- package/remote-fast/win-x64/NAudio.Midi.dll +0 -0
- package/remote-fast/win-x64/NAudio.Wasapi.dll +0 -0
- package/remote-fast/win-x64/NAudio.WinForms.dll +0 -0
- package/remote-fast/win-x64/NAudio.WinMM.dll +0 -0
- package/remote-fast/win-x64/NAudio.dll +0 -0
- package/remote-fast/win-x64/SharpGen.Runtime.COM.dll +0 -0
- package/remote-fast/win-x64/SharpGen.Runtime.dll +0 -0
- package/remote-fast/win-x64/Vortice.DXGI.dll +0 -0
- package/remote-fast/win-x64/Vortice.Direct3D11.dll +0 -0
- package/remote-fast/win-x64/Vortice.DirectX.dll +0 -0
- package/remote-fast/win-x64/Vortice.Mathematics.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.deps.json +238 -0
- package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/win-x64/mindexec-remote-fast.exe +0 -0
- package/remote-hub.js +42 -3
- package/server.js +22 -6
- package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +49 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +6 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +70 -60
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-multi-select.js +32 -6
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-remote-codecs.js +126 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-video-playback-controls.js +95 -0
- package/wwwroot/_framework/{MindExecution.Core.808jj176e1.dll → MindExecution.Core.nxjlewduna.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.75hxk08tt0.dll → MindExecution.Kernel.vrfi63yg9f.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.0zkmk8wahq.dll → MindExecution.Plugins.Admin.1rcwhdxl0r.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.vyw3769hrw.dll → MindExecution.Plugins.Business.rx0eieg51y.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.cvmglrxsjb.dll → MindExecution.Plugins.Concept.zzczjzhvk1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.jtw9q1dm9n.dll → MindExecution.Plugins.Directory.bsorcntiwp.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.8hmc6ps1ux.dll → MindExecution.Plugins.PlanMaster.i5j9t4f1jf.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.xb9sou9ox0.dll → MindExecution.Plugins.YouTube.1mpn9satft.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.pqab76cjb6.dll → MindExecution.Shared.mpi1gzau9b.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.mc24u4bzol.dll → MindExecution.Web.nxykcyxd02.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +3 -1
- package/wwwroot/service-worker-assets.js +35 -27
- package/wwwroot/service-worker.js +1 -1
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '
|
|
582
|
+
const scriptVersion = '20260717-livedesk-h264-transport-v936';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -593,6 +593,8 @@
|
|
|
593
593
|
'texture-worker-manager.js', // ??Web Worker ??좎럩?ゅ뜝???좎럩苑?
|
|
594
594
|
'mind-map-texture-factory.js',
|
|
595
595
|
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
|
+
'mind-map-video-playback-controls.js',
|
|
597
|
+
'mind-map-remote-codecs.js',
|
|
596
598
|
'mind-map-css3d-manager.js',
|
|
597
599
|
'mind-map-object-manager.js',
|
|
598
600
|
'mind-map-pipeline.js',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "Zf4S1may",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"hash": "sha256-
|
|
45
|
+
"hash": "sha256-nGJWFhmmbUfPqx/4zncFwuiGLwqyJNR0Uet8NCG39fA=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-hxUthw2aeZKkPCvKaa1jYyAkNB4xLAOkRMq795teC0U=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-GFA+cRQbVmpUXxFLk/Zl7kBOUgISlLjY6DdZ7N+Yx8A=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
"hash": "sha256-
|
|
129
|
+
"hash": "sha256-wS7aOK89A/IvLSPLyxFOqkCcnPbqLgFl2Oc+bl8GLBU=",
|
|
130
130
|
"url": "_content/MindExecution.Shared/js/mind-map-multi-select.js"
|
|
131
131
|
},
|
|
132
132
|
{
|
|
@@ -153,6 +153,10 @@
|
|
|
153
153
|
"hash": "sha256-QvC3R24/3hjEyEkuxhKD2yA47gscsPoysFuaQJ6hhLQ=",
|
|
154
154
|
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
155
155
|
},
|
|
156
|
+
{
|
|
157
|
+
"hash": "sha256-xPo+OHw25ABSIGVNplBuKGRyqjJHsSLHGz2Ra3FwI24=",
|
|
158
|
+
"url": "_content/MindExecution.Shared/js/mind-map-remote-codecs.js"
|
|
159
|
+
},
|
|
156
160
|
{
|
|
157
161
|
"hash": "sha256-cLpfBu1xGaz6r3erSnxPGrqPlfldqcMbV/taYkFtnlE=",
|
|
158
162
|
"url": "_content/MindExecution.Shared/js/mind-map-render-plan.js"
|
|
@@ -169,6 +173,10 @@
|
|
|
169
173
|
"hash": "sha256-aPoxruQaOIkX+R/NXEtKYw5OBa0hRFmVaSw13NgF7mU=",
|
|
170
174
|
"url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup"
|
|
171
175
|
},
|
|
176
|
+
{
|
|
177
|
+
"hash": "sha256-rgRmzBpaC5Jv9JJH1ZaW7i4IRUthOfik8McRSyuXMHs=",
|
|
178
|
+
"url": "_content/MindExecution.Shared/js/mind-map-video-playback-controls.js"
|
|
179
|
+
},
|
|
172
180
|
{
|
|
173
181
|
"hash": "sha256-MuqzAuC7Wyo7GxkOtpclozmNB+Pu9wC4txMN4I+jM84=",
|
|
174
182
|
"url": "_content/MindExecution.Shared/js/mind-map-visibility-worker.js"
|
|
@@ -414,44 +422,44 @@
|
|
|
414
422
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
415
423
|
},
|
|
416
424
|
{
|
|
417
|
-
"hash": "sha256-
|
|
418
|
-
"url": "_framework/MindExecution.Core.
|
|
425
|
+
"hash": "sha256-K/aYKYR7u21eWdPhsuyT3DfAcldItQ9fUJDpyAW1Yk8=",
|
|
426
|
+
"url": "_framework/MindExecution.Core.nxjlewduna.dll"
|
|
419
427
|
},
|
|
420
428
|
{
|
|
421
|
-
"hash": "sha256-
|
|
422
|
-
"url": "_framework/MindExecution.Kernel.
|
|
429
|
+
"hash": "sha256-pQ3AG4I0yHOE+LjWf41pPTzD6WAPx5QEVQR99tgmjv8=",
|
|
430
|
+
"url": "_framework/MindExecution.Kernel.vrfi63yg9f.dll"
|
|
423
431
|
},
|
|
424
432
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
433
|
+
"hash": "sha256-jV0N8WevIxIidWNinjH1vZ+NS+eKshBtlZpvb6vCfmg=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Admin.1rcwhdxl0r.dll"
|
|
427
435
|
},
|
|
428
436
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
437
|
+
"hash": "sha256-wXky9gfkYuS9LpiAJcaHL2ySg388QTlafZ7dDYaYGkc=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.Business.rx0eieg51y.dll"
|
|
431
439
|
},
|
|
432
440
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
441
|
+
"hash": "sha256-caSJdsMUA/y2XoLlC69Ml7LVPyEklu9iUqK8LbLH/Ac=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.Concept.zzczjzhvk1.dll"
|
|
435
443
|
},
|
|
436
444
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
445
|
+
"hash": "sha256-O07lrIPzxWQRivTDifZBsSoG+ZMptwdu2Ey2e9sF0M0=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.Directory.bsorcntiwp.dll"
|
|
439
447
|
},
|
|
440
448
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
449
|
+
"hash": "sha256-NsaH6mfDGUtq96FRS/yR+b5QyLzjVWublyCQBKugpss=",
|
|
450
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.i5j9t4f1jf.dll"
|
|
443
451
|
},
|
|
444
452
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
453
|
+
"hash": "sha256-l6UnB6LB9UHscjF/q5j8F2fKCunQ63w6mkwEEuWK3tg=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.YouTube.1mpn9satft.dll"
|
|
447
455
|
},
|
|
448
456
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Shared.
|
|
457
|
+
"hash": "sha256-Bk/J98QCHrurXfAfiETiavqv5g5jXQ73yvEdYibuIrU=",
|
|
458
|
+
"url": "_framework/MindExecution.Shared.mpi1gzau9b.dll"
|
|
451
459
|
},
|
|
452
460
|
{
|
|
453
|
-
"hash": "sha256-
|
|
454
|
-
"url": "_framework/MindExecution.Web.
|
|
461
|
+
"hash": "sha256-JW4hqFR8NT2yFKIvMflIhM8Wks9Dec4w+0ofv69tU6w=",
|
|
462
|
+
"url": "_framework/MindExecution.Web.nxykcyxd02.dll"
|
|
455
463
|
},
|
|
456
464
|
{
|
|
457
465
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -770,7 +778,7 @@
|
|
|
770
778
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
779
|
},
|
|
772
780
|
{
|
|
773
|
-
"hash": "sha256-
|
|
781
|
+
"hash": "sha256-efYVBj4Jm4ZnmPFM+XlCUI1QryxIbUGpXgESbyxFr4g=",
|
|
774
782
|
"url": "_framework/blazor.boot.json"
|
|
775
783
|
},
|
|
776
784
|
{
|
|
@@ -830,7 +838,7 @@
|
|
|
830
838
|
"url": "icon-512.png"
|
|
831
839
|
},
|
|
832
840
|
{
|
|
833
|
-
"hash": "sha256-
|
|
841
|
+
"hash": "sha256-vfaRB6KlJZ7SQhWJYbdLn8EiiizshJMwvL4n4HkCEpM=",
|
|
834
842
|
"url": "index.html"
|
|
835
843
|
},
|
|
836
844
|
{
|