@mindexec/cli 0.2.445 → 0.2.447
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/README.md +2 -2
- package/package.json +6 -3
- 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/remote-hub.js +171 -6
- package/scripts/remote-fast-live-rate-smoke.mjs +1 -0
- package/scripts/remote-fleet-render-smoke.mjs +74 -36
- package/scripts/remote-hub-smoke.mjs +7 -0
- package/server.js +2 -2
- package/wwwroot/_content/MindExecution.Shared/js/background-themes.js +1 -3
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +199 -100
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-hotpath.js +902 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +186 -360
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +124 -179
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +167 -24
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +96 -74
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-pipeline.js +66 -30
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-remote-codecs.js +6 -3
- package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +35 -2
- package/wwwroot/_framework/{MindExecution.Core.4moacskf64.dll → MindExecution.Core.mswl4wlkm9.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Kernel.pa251cfsz4.dll → MindExecution.Kernel.zupeldfptg.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Admin.dxyuwmxv1s.dll → MindExecution.Plugins.Admin.hq0vyqnqtn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Business.7uj5erqhhn.dll → MindExecution.Plugins.Business.pucw3o7rno.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.108rmsxc96.dll → MindExecution.Plugins.Concept.557tzzkrrx.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Directory.ccsy3g0fe5.dll → MindExecution.Plugins.Directory.zh1ddg1fn6.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.1vjpuoe9ff.dll → MindExecution.Plugins.PlanMaster.0z9pzynpu9.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.q8ml98phj9.dll → MindExecution.Plugins.YouTube.y8g77r54fa.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.2pywq19zjy.dll → MindExecution.Shared.1ymsdbwid2.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.qucbls1wfr.dll → MindExecution.Web.bb1txupuv0.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +21 -21
- package/wwwroot/index.html +2 -1
- package/wwwroot/service-worker-assets.js +36 -32
- package/wwwroot/service-worker.js +1 -1
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
return true;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
function ensureDecoder(canvas, frame, state) {
|
|
101
|
+
function ensureDecoder(canvas, frame, state, onPaint) {
|
|
102
102
|
if (typeof VideoDecoder !== 'function' || typeof EncodedVideoChunk !== 'function') {
|
|
103
103
|
return null;
|
|
104
104
|
}
|
|
@@ -106,6 +106,8 @@
|
|
|
106
106
|
const width = Number(frame.width || 0) || canvas.width || 1920;
|
|
107
107
|
const height = Number(frame.height || 0) || canvas.height || 1080;
|
|
108
108
|
const key = `${width}x${height}`;
|
|
109
|
+
state.onPaint = onPaint;
|
|
110
|
+
state.latestFrame = frame;
|
|
109
111
|
if (state.decoder && state.width === width && state.height === height) {
|
|
110
112
|
return state.decoder;
|
|
111
113
|
}
|
|
@@ -126,6 +128,7 @@
|
|
|
126
128
|
const context = canvas.getContext('2d', { alpha: false, desynchronized: true });
|
|
127
129
|
context?.drawImage(videoFrame, 0, 0, canvas.width, canvas.height);
|
|
128
130
|
state.lastPaintAt = performance.now();
|
|
131
|
+
try { state.onPaint?.(canvas, state.latestFrame || frame); } catch (error) { emit('remote.h264.paintCallbackFailed', { error: error?.message || String(error || '') }); }
|
|
129
132
|
emit('remote.h264.paint', { frameSeq: state.lastSeq, width: canvas.width, height: canvas.height });
|
|
130
133
|
} finally {
|
|
131
134
|
videoFrame.close?.();
|
|
@@ -154,7 +157,7 @@
|
|
|
154
157
|
return decoder;
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
async function decode(canvas, frame) {
|
|
160
|
+
async function decode(canvas, frame, onPaint) {
|
|
158
161
|
const payload = frame?._remoteFleetPayloadBlob;
|
|
159
162
|
if (!canvas || !payload) {
|
|
160
163
|
return false;
|
|
@@ -168,7 +171,7 @@
|
|
|
168
171
|
const seq = Number(frame.streamFrameSeq || frame.frameSeq || 0) || 0;
|
|
169
172
|
if (seq > 0 && seq <= state.lastSeq) return true;
|
|
170
173
|
state.lastSeq = seq;
|
|
171
|
-
const decoder = ensureDecoder(canvas, frame, state);
|
|
174
|
+
const decoder = ensureDecoder(canvas, frame, state, onPaint);
|
|
172
175
|
if (!decoder || decoder.state === 'closed') return false;
|
|
173
176
|
if (state.pending >= MAX_DECODE_QUEUE) {
|
|
174
177
|
emit('remote.h264.drop', { reason: 'decode-queue', frameSeq: seq });
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
function CSS3DRenderer(){
|
|
34
34
|
var _width, _height, _widthHalf, _heightHalf;
|
|
35
35
|
var cache = { camera:{ fov:0, style:'' }, objects: new WeakMap() };
|
|
36
|
+
var debugCounters = { sceneObjectsVisited:0, visibilityPatchEntered:0, visibilityPatchExited:0 };
|
|
36
37
|
var domElement = document.createElement('div');
|
|
37
38
|
domElement.style.overflow = 'hidden';
|
|
38
39
|
domElement.style.contain = 'layout style';
|
|
@@ -63,8 +64,8 @@
|
|
|
63
64
|
for (var i=0;i<16;i++) next[i]=epsilon(elements[i]);
|
|
64
65
|
return next;
|
|
65
66
|
}
|
|
66
|
-
function
|
|
67
|
-
if (object
|
|
67
|
+
function renderCssObject(object){
|
|
68
|
+
if (object?.isCSS3DObject){
|
|
68
69
|
var visible=object.visible===true;
|
|
69
70
|
var layoutPrepared=object.userData?._residentTransitionPrepared===true || object.userData?._fullResFringePrepared===true;
|
|
70
71
|
var display=(visible || layoutPrepared) ? '' : 'none';
|
|
@@ -85,6 +86,10 @@
|
|
|
85
86
|
cached.display=display;
|
|
86
87
|
if (element.parentNode!==cameraElement) cameraElement.appendChild(element);
|
|
87
88
|
}
|
|
89
|
+
}
|
|
90
|
+
function renderObject(object){
|
|
91
|
+
debugCounters.sceneObjectsVisited++;
|
|
92
|
+
renderCssObject(object);
|
|
88
93
|
for (var i=0,l=object.children.length;i<l;i++) renderObject(object.children[i]);
|
|
89
94
|
}
|
|
90
95
|
function renderCameraOnly(renderer, camera, matrixWorldIsCurrent){
|
|
@@ -109,6 +114,34 @@
|
|
|
109
114
|
object.element?.getBoundingClientRect?.();
|
|
110
115
|
return true;
|
|
111
116
|
};
|
|
117
|
+
this.applyVisibilityDiff = function(enteredObjects, exitedObjects){
|
|
118
|
+
var entered=Array.isArray(enteredObjects) ? enteredObjects : [];
|
|
119
|
+
var exited=Array.isArray(exitedObjects) ? exitedObjects : [];
|
|
120
|
+
var visited=0;
|
|
121
|
+
try {
|
|
122
|
+
for (var i=0;i<exited.length;i++){
|
|
123
|
+
var exitedObject=exited[i];
|
|
124
|
+
if (!exitedObject || exitedObject.isCSS3DObject!==true) continue;
|
|
125
|
+
exitedObject.updateMatrixWorld(true);
|
|
126
|
+
renderCssObject(exitedObject);
|
|
127
|
+
visited++;
|
|
128
|
+
}
|
|
129
|
+
for (var j=0;j<entered.length;j++){
|
|
130
|
+
var enteredObject=entered[j];
|
|
131
|
+
if (!enteredObject || enteredObject.isCSS3DObject!==true) continue;
|
|
132
|
+
enteredObject.updateMatrixWorld(true);
|
|
133
|
+
renderCssObject(enteredObject);
|
|
134
|
+
visited++;
|
|
135
|
+
}
|
|
136
|
+
} catch (error) {
|
|
137
|
+
return { complete:false, reason:'visibility-diff-exception', visited:visited, error:error };
|
|
138
|
+
}
|
|
139
|
+
debugCounters.visibilityPatchEntered+=entered.length;
|
|
140
|
+
debugCounters.visibilityPatchExited+=exited.length;
|
|
141
|
+
return { complete:true, entered:entered.length, exited:exited.length, visited:visited };
|
|
142
|
+
};
|
|
143
|
+
this.getDebugCounters = function(){ return { ...debugCounters }; };
|
|
144
|
+
this.resetDebugCounters = function(){ debugCounters={ sceneObjectsVisited:0, visibilityPatchEntered:0, visibilityPatchExited:0 }; };
|
|
112
145
|
this.render = function(scene, camera){ if (scene.autoUpdate===true) scene.updateMatrixWorld(); renderCameraOnly(this, camera, false); renderObject(scene); };
|
|
113
146
|
}
|
|
114
147
|
|
package/wwwroot/_framework/{MindExecution.Core.4moacskf64.dll → MindExecution.Core.mswl4wlkm9.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.qucbls1wfr.dll → MindExecution.Web.bb1txupuv0.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-UZuh8tLI9D39IO7I9pnWdRUu1iZ6Vy2k6IjaF0olNBI=",
|
|
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.mswl4wlkm9.dll": "MindExecution.Core.dll",
|
|
126
|
+
"MindExecution.Kernel.zupeldfptg.dll": "MindExecution.Kernel.dll",
|
|
127
|
+
"MindExecution.Plugins.Admin.hq0vyqnqtn.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
|
+
"MindExecution.Plugins.Business.pucw3o7rno.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
+
"MindExecution.Plugins.Concept.557tzzkrrx.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
|
+
"MindExecution.Plugins.Directory.zh1ddg1fn6.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.0z9pzynpu9.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.y8g77r54fa.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.1ymsdbwid2.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.bb1txupuv0.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.mswl4wlkm9.dll": "sha256-Ru09H3PbP8MVKjeEE5FLXnXm2LVpv421tfgliW/vN+M=",
|
|
280
|
+
"MindExecution.Kernel.zupeldfptg.dll": "sha256-azMSlIBQcPcmVNI3eX+WxSnlXUQ/j/NDCtOKDp++owk=",
|
|
281
|
+
"MindExecution.Plugins.Business.pucw3o7rno.dll": "sha256-EXxUy+DRMR51sHo+Q/QYuTh2Oz7/wxeKGhADP07KWcw=",
|
|
282
|
+
"MindExecution.Plugins.Concept.557tzzkrrx.dll": "sha256-aTh3k+ncbMY0UZ0EWHp19SSWyHKIv8/MUW6AqDDmWW8=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.0z9pzynpu9.dll": "sha256-vHnd6UzPOrh35E0y1VPsWGj+Jl+Ze2rM9c6SYb+grpM=",
|
|
284
|
+
"MindExecution.Shared.1ymsdbwid2.dll": "sha256-KRyO57WBUyFvSyLnDWqpBoELgMoiC+d6lyBMU9qz8PQ=",
|
|
285
|
+
"MindExecution.Web.bb1txupuv0.dll": "sha256-57REdRLMDGVtyh6YhuvZe0XLVkNhrJHqLDnEDR45l9Q="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
|
-
"MindExecution.Plugins.Admin.
|
|
289
|
-
"MindExecution.Plugins.Directory.
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
288
|
+
"MindExecution.Plugins.Admin.hq0vyqnqtn.dll": "sha256-eQ9YVFpetThf85xrcPIDWGPIHp2E3kzSVYmghtRFDFo=",
|
|
289
|
+
"MindExecution.Plugins.Directory.zh1ddg1fn6.dll": "sha256-KXobDyCfuJf/4WJf7DAJaBPanfkPZHkdrCiSWwefotg=",
|
|
290
|
+
"MindExecution.Plugins.YouTube.y8g77r54fa.dll": "sha256-/q58KqYenDmVBAYkDcB/Frnz97E/69zjgE++VeKa2Ug="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
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 = '20260725-cold-mid-local-grid-v945';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -595,6 +595,7 @@
|
|
|
595
595
|
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
596
|
'mind-map-video-playback-controls.js',
|
|
597
597
|
'mind-map-remote-codecs.js',
|
|
598
|
+
'mind-map-css3d-hotpath.js',
|
|
598
599
|
'mind-map-css3d-manager.js',
|
|
599
600
|
'mind-map-object-manager.js',
|
|
600
601
|
'mind-map-pipeline.js',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "1hca8nFH",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"url": "_content/MindExecution.Shared/js/agent-visualization.js"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
"hash": "sha256-
|
|
61
|
+
"hash": "sha256-qCfvX9VTWXpI/7IAJyV8FXc83Z7vDq7yxYHg5rkp4ZE=",
|
|
62
62
|
"url": "_content/MindExecution.Shared/js/background-themes.js"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-4eD2o9mTDubyz6mpk1N9GZ3MmCi09MaC923iYGCb348=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,11 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-3OXymXLbgQLXbqa2rQrPpfUq3tnWYVv2LZR3azSeGV0=",
|
|
90
|
+
"url": "_content/MindExecution.Shared/js/mind-map-css3d-hotpath.js"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"hash": "sha256-2JJyLe6OTexKRnFxVzybuaMqnwJggLHXs37xmjWlUkg=",
|
|
90
94
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
95
|
},
|
|
92
96
|
{
|
|
@@ -106,7 +110,7 @@
|
|
|
106
110
|
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
107
111
|
},
|
|
108
112
|
{
|
|
109
|
-
"hash": "sha256-
|
|
113
|
+
"hash": "sha256-yU6+cCQmi+iqU9PH1W17Kpgbn4t9MUsgMSRbByeJebw=",
|
|
110
114
|
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
115
|
},
|
|
112
116
|
{
|
|
@@ -114,7 +118,7 @@
|
|
|
114
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
|
-
"hash": "sha256-
|
|
121
|
+
"hash": "sha256-I07Vo+UaV2ej2xI0H0Rd3t6oagbgg1Yhime3SMHEDiU=",
|
|
118
122
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
123
|
},
|
|
120
124
|
{
|
|
@@ -134,7 +138,7 @@
|
|
|
134
138
|
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
|
-
"hash": "sha256-
|
|
141
|
+
"hash": "sha256-X5aI8spIp8PTAdgUHXT84MNn5jboAkTAPkvqroiKwZ8=",
|
|
138
142
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
@@ -150,11 +154,11 @@
|
|
|
150
154
|
"url": "_content/MindExecution.Shared/js/mind-map-object-manager.js.backup"
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
|
-
"hash": "sha256-
|
|
157
|
+
"hash": "sha256-5DDlGOvO+rSwX72WkOOoK+XnOQn376q7XozwyQYV54s=",
|
|
154
158
|
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
|
-
"hash": "sha256-
|
|
161
|
+
"hash": "sha256-kag26w47TCRl3HMnxrhibrBIiiJmmOLtDAZKyUPWHQI=",
|
|
158
162
|
"url": "_content/MindExecution.Shared/js/mind-map-remote-codecs.js"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
@@ -194,7 +198,7 @@
|
|
|
194
198
|
"url": "_content/MindExecution.Shared/js/plan-master.js"
|
|
195
199
|
},
|
|
196
200
|
{
|
|
197
|
-
"hash": "sha256-
|
|
201
|
+
"hash": "sha256-bhxag0Uf6KL+a8LEeYLS3UvXAkh4nTflb7xcxtbIl+U=",
|
|
198
202
|
"url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
|
|
199
203
|
},
|
|
200
204
|
{
|
|
@@ -422,44 +426,44 @@
|
|
|
422
426
|
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
423
427
|
},
|
|
424
428
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Core.
|
|
429
|
+
"hash": "sha256-Ru09H3PbP8MVKjeEE5FLXnXm2LVpv421tfgliW/vN+M=",
|
|
430
|
+
"url": "_framework/MindExecution.Core.mswl4wlkm9.dll"
|
|
427
431
|
},
|
|
428
432
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Kernel.
|
|
433
|
+
"hash": "sha256-azMSlIBQcPcmVNI3eX+WxSnlXUQ/j/NDCtOKDp++owk=",
|
|
434
|
+
"url": "_framework/MindExecution.Kernel.zupeldfptg.dll"
|
|
431
435
|
},
|
|
432
436
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.Admin.
|
|
437
|
+
"hash": "sha256-eQ9YVFpetThf85xrcPIDWGPIHp2E3kzSVYmghtRFDFo=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.Admin.hq0vyqnqtn.dll"
|
|
435
439
|
},
|
|
436
440
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.Business.
|
|
441
|
+
"hash": "sha256-EXxUy+DRMR51sHo+Q/QYuTh2Oz7/wxeKGhADP07KWcw=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.Business.pucw3o7rno.dll"
|
|
439
443
|
},
|
|
440
444
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
445
|
+
"hash": "sha256-aTh3k+ncbMY0UZ0EWHp19SSWyHKIv8/MUW6AqDDmWW8=",
|
|
446
|
+
"url": "_framework/MindExecution.Plugins.Concept.557tzzkrrx.dll"
|
|
443
447
|
},
|
|
444
448
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Plugins.Directory.
|
|
449
|
+
"hash": "sha256-KXobDyCfuJf/4WJf7DAJaBPanfkPZHkdrCiSWwefotg=",
|
|
450
|
+
"url": "_framework/MindExecution.Plugins.Directory.zh1ddg1fn6.dll"
|
|
447
451
|
},
|
|
448
452
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
453
|
+
"hash": "sha256-vHnd6UzPOrh35E0y1VPsWGj+Jl+Ze2rM9c6SYb+grpM=",
|
|
454
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.0z9pzynpu9.dll"
|
|
451
455
|
},
|
|
452
456
|
{
|
|
453
|
-
"hash": "sha256
|
|
454
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
457
|
+
"hash": "sha256-/q58KqYenDmVBAYkDcB/Frnz97E/69zjgE++VeKa2Ug=",
|
|
458
|
+
"url": "_framework/MindExecution.Plugins.YouTube.y8g77r54fa.dll"
|
|
455
459
|
},
|
|
456
460
|
{
|
|
457
|
-
"hash": "sha256-
|
|
458
|
-
"url": "_framework/MindExecution.Shared.
|
|
461
|
+
"hash": "sha256-KRyO57WBUyFvSyLnDWqpBoELgMoiC+d6lyBMU9qz8PQ=",
|
|
462
|
+
"url": "_framework/MindExecution.Shared.1ymsdbwid2.dll"
|
|
459
463
|
},
|
|
460
464
|
{
|
|
461
|
-
"hash": "sha256-
|
|
462
|
-
"url": "_framework/MindExecution.Web.
|
|
465
|
+
"hash": "sha256-57REdRLMDGVtyh6YhuvZe0XLVkNhrJHqLDnEDR45l9Q=",
|
|
466
|
+
"url": "_framework/MindExecution.Web.bb1txupuv0.dll"
|
|
463
467
|
},
|
|
464
468
|
{
|
|
465
469
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -778,7 +782,7 @@
|
|
|
778
782
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
779
783
|
},
|
|
780
784
|
{
|
|
781
|
-
"hash": "sha256-
|
|
785
|
+
"hash": "sha256-y+apDynf1Lx2swoTt7EoIRlZ26seLNBsgZjBYUjkSc8=",
|
|
782
786
|
"url": "_framework/blazor.boot.json"
|
|
783
787
|
},
|
|
784
788
|
{
|
|
@@ -838,7 +842,7 @@
|
|
|
838
842
|
"url": "icon-512.png"
|
|
839
843
|
},
|
|
840
844
|
{
|
|
841
|
-
"hash": "sha256
|
|
845
|
+
"hash": "sha256-/9v1YExJbRhqbwfDeyeXT/IrmqGDhzowehpIIwAJc+c=",
|
|
842
846
|
"url": "index.html"
|
|
843
847
|
},
|
|
844
848
|
{
|