@mindexec/cli 0.2.465 → 0.2.467

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.
Files changed (29) hide show
  1. package/README.md +3 -0
  2. package/codex-runtime.js +546 -39
  3. package/package.json +38 -34
  4. package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
  5. package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
  6. package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
  7. package/scripts/board-render-ownership-smoke.mjs +85 -0
  8. package/scripts/codex-runtime-home-smoke.mjs +58 -0
  9. package/scripts/codex-sdk-image-live-smoke.mjs +43 -0
  10. package/scripts/codex-sdk-image-runtime-smoke.mjs +122 -0
  11. package/server.js +17 -0
  12. package/wwwroot/_content/MindExecution.Shared/js/mind-map-board-render-ownership.js +81 -0
  13. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +85 -32
  14. package/wwwroot/_framework/MindExecution.Core.7oa1zr128r.dll +0 -0
  15. package/wwwroot/_framework/{MindExecution.Kernel.98wpeg0ntq.dll → MindExecution.Kernel.dqr12udjsr.dll} +0 -0
  16. package/wwwroot/_framework/{MindExecution.Plugins.Admin.y25y20jkiv.dll → MindExecution.Plugins.Admin.6bt51zpdq7.dll} +0 -0
  17. package/wwwroot/_framework/{MindExecution.Plugins.Business.guko3zr1rb.dll → MindExecution.Plugins.Business.e92nh6aw24.dll} +0 -0
  18. package/wwwroot/_framework/{MindExecution.Plugins.Concept.qmin06apyt.dll → MindExecution.Plugins.Concept.z5rfp7c5gn.dll} +0 -0
  19. package/wwwroot/_framework/{MindExecution.Plugins.Directory.6rw2l9utyr.dll → MindExecution.Plugins.Directory.6qmfycdkxt.dll} +0 -0
  20. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.72ir717kho.dll → MindExecution.Plugins.PlanMaster.lbbov61zg3.dll} +0 -0
  21. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.rkge49vbw6.dll → MindExecution.Plugins.YouTube.7vjisvqu3j.dll} +0 -0
  22. package/wwwroot/_framework/{MindExecution.Shared.q4dgev2e3z.dll → MindExecution.Shared.ydgyfah35e.dll} +0 -0
  23. package/wwwroot/_framework/MindExecution.Web.b68gpm21e3.dll +0 -0
  24. package/wwwroot/_framework/blazor.boot.json +21 -21
  25. package/wwwroot/index.html +2 -1
  26. package/wwwroot/service-worker-assets.js +28 -24
  27. package/wwwroot/service-worker.js +1 -1
  28. package/wwwroot/_framework/MindExecution.Core.o29fdql6j5.dll +0 -0
  29. package/wwwroot/_framework/MindExecution.Web.ckdrqv28k2.dll +0 -0
@@ -2837,7 +2837,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
2837
2837
  /**
2838
2838
  * Detach the current board's scene objects (without destroying them) and store in cache.
2839
2839
  */
2840
- function _detachCurrentBoard(boardId) {
2840
+ function _detachCurrentBoard(boardId, nextBoardId = null) {
2841
2841
  if (!moduleInstance || !boardId) return;
2842
2842
  const t0 = performance.now();
2843
2843
 
@@ -2892,6 +2892,16 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
2892
2892
  window.MindMapCss3DManager.clearTextOverlays(moduleInstance);
2893
2893
  }
2894
2894
 
2895
+ window.MindMapBoardRenderOwnership?.retireResidentBoard?.(
2896
+ moduleInstance.lodRenderer,
2897
+ moduleInstance,
2898
+ {
2899
+ fromBoardId: boardId,
2900
+ toBoardId: nextBoardId,
2901
+ reason: 'board-cache-detach'
2902
+ }
2903
+ );
2904
+
2895
2905
  _touchBoardCache(boardId, snapshot);
2896
2906
  _enforceBoardCacheLimit();
2897
2907
 
@@ -2911,15 +2921,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
2911
2921
  totalTextureMemoryBytes: 0
2912
2922
  });
2913
2923
 
2914
- // Reset LOD renderer state
2915
- if (moduleInstance.lodRenderer) {
2916
- moduleInstance.lodRenderer._instancesDirty = true;
2917
- moduleInstance.lodRenderer._isNodeArrayDirty = true;
2918
- moduleInstance.lodRenderer._nodeIdToIndex.clear();
2919
- moduleInstance.lodRenderer.lineDataCache = new Map();
2920
- moduleInstance.lodRenderer._cachedNodeArray = [];
2921
- }
2922
-
2923
2924
  console.log(`[BoardCache] ??Detached board ${boardId} (${snapshot.nodeObjectsById.size} nodes) in ${(performance.now() - t0).toFixed(1)}ms`);
2924
2925
  }
2925
2926
 
@@ -2939,16 +2940,17 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
2939
2940
  snapshot.nodeObjectsById.forEach((entry, nodeId) => {
2940
2941
  try {
2941
2942
  if (entry.glObject && moduleInstance.scene) {
2943
+ entry.glObject.visible = false;
2942
2944
  moduleInstance.scene.add(entry.glObject);
2943
2945
  }
2944
2946
  if (entry.cssObject) {
2945
2947
  const cssScene = moduleInstance.cssScene || moduleInstance.scene;
2946
2948
  if (cssScene) cssScene.add(entry.cssObject);
2947
- // Re-show CSS element
2949
+ entry.cssObject.visible = false;
2950
+ // Keep the cached surface neutral until the target board's
2951
+ // camera band becomes the active renderer owner.
2948
2952
  if (entry.cssObject.element) {
2949
- entry.cssObject.element.style.display = '';
2950
- entry.cssObject.element.style.visibility = '';
2951
- entry.cssObject.element.style.opacity = '';
2953
+ entry.cssObject.element.style.setProperty('display', 'none', 'important');
2952
2954
  }
2953
2955
  }
2954
2956
  } catch (e) {
@@ -2974,10 +2976,14 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
2974
2976
  });
2975
2977
 
2976
2978
  // Restore LOD renderer
2977
- if (moduleInstance.lodRenderer) {
2978
- moduleInstance.lodRenderer.lineDataCache = snapshot.lodLineDataCache;
2979
- moduleInstance.lodRenderer.requestResidentPatch?.('board-reload');
2980
- }
2979
+ window.MindMapBoardRenderOwnership?.prepareCachedBoard?.(
2980
+ moduleInstance.lodRenderer,
2981
+ moduleInstance,
2982
+ {
2983
+ boardId,
2984
+ lineDataCache: snapshot.lodLineDataCache
2985
+ }
2986
+ );
2981
2987
  moduleInstance.logicWorkerBridge?.resetBoard?.(boardId, 'cache-attach');
2982
2988
  moduleInstance.logicWorkerBridge?.rebuildNodeTables?.(moduleInstance, {
2983
2989
  boardId,
@@ -3859,6 +3865,53 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
3859
3865
  return true;
3860
3866
  }
3861
3867
 
3868
+ _applyLocalSnapGridMotionStyle(layer, smallStepPx, majorStepPx, opacity) {
3869
+ if (!layer) return false;
3870
+
3871
+ const safeSmallStep = Math.max(
3872
+ LOCAL_SNAP_GRID_RASTER_MIN_STEP_PX,
3873
+ Number(smallStepPx) || LOCAL_SNAP_GRID_DEFAULT_STEP_PX
3874
+ );
3875
+ const safeMajorStep = Math.max(
3876
+ safeSmallStep,
3877
+ Math.min(
3878
+ LOCAL_SNAP_GRID_RASTER_MAX_PERIOD_PX,
3879
+ Number(majorStepPx) || LOCAL_SNAP_GRID_DEFAULT_MAJOR_STEP_PX
3880
+ )
3881
+ );
3882
+ const safeOpacity = Math.max(0, Math.min(0.68, Number(opacity) || 0));
3883
+ const smallStepValue = safeSmallStep.toFixed(3);
3884
+ const majorStepValue = safeMajorStep.toFixed(3);
3885
+ const backgroundSizeValue = [
3886
+ `${smallStepValue}px ${smallStepValue}px`,
3887
+ `${smallStepValue}px ${smallStepValue}px`,
3888
+ `${majorStepValue}px ${majorStepValue}px`,
3889
+ `${majorStepValue}px ${majorStepValue}px`
3890
+ ].join(', ');
3891
+ const backgroundImage = [
3892
+ 'linear-gradient(to right, rgba(51, 65, 85, 0.24) 0 1px, transparent 1px)',
3893
+ 'linear-gradient(to bottom, rgba(51, 65, 85, 0.24) 0 1px, transparent 1px)',
3894
+ 'linear-gradient(to right, rgba(15, 23, 42, 0.42) 0 1px, transparent 1px)',
3895
+ 'linear-gradient(to bottom, rgba(15, 23, 42, 0.42) 0 1px, transparent 1px)'
3896
+ ].join(', ');
3897
+ const motionKey = `motion-line|${smallStepValue}|${majorStepValue}|${safeOpacity.toFixed(3)}`;
3898
+
3899
+ if (motionKey === this._lastLocalSnapGridKey) return false;
3900
+
3901
+ this._lastLocalSnapGridKey = motionKey;
3902
+ this._lastLocalSnapGridPatternPeriodPx = safeMajorStep;
3903
+ this._localSnapGridRasterPeriodPx = safeMajorStep;
3904
+ this._lastLocalSnapGridBackgroundSizeKey = backgroundSizeValue;
3905
+ this._lastLocalSnapGridOpacity = safeOpacity.toFixed(3);
3906
+ this._lastLocalSnapGridTransformKey = '';
3907
+ if (layer.style.backgroundImage !== backgroundImage) layer.style.backgroundImage = backgroundImage;
3908
+ if (layer.style.backgroundSize !== backgroundSizeValue) layer.style.backgroundSize = backgroundSizeValue;
3909
+ if (layer.style.opacity !== this._lastLocalSnapGridOpacity) {
3910
+ layer.style.opacity = this._lastLocalSnapGridOpacity;
3911
+ }
3912
+ return true;
3913
+ }
3914
+
3862
3915
  _ensureLocalSnapGridBaseStyle(layer = null) {
3863
3916
  const targetLayer = layer || this._ensureLocalSnapGridLayer();
3864
3917
  if (!targetLayer) {
@@ -3973,16 +4026,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
3973
4026
  return false;
3974
4027
  }
3975
4028
 
3976
- if (this.isZooming === true &&
3977
- !!this._lastLocalSnapGridKey &&
3978
- this._getLocalSnapGridStyleKind() !== 'dot') {
3979
- this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
3980
- this._lastLocalSnapGridPositionRevision = pointerRevision;
3981
- this._localSnapGridStyleDeferredForZoom = true;
3982
- this._setLocalSnapGridVisible(true, opacity.toFixed(3));
3983
- return true;
3984
- }
3985
-
3986
4029
  const vfov = (Number(camera.fov || 45) * Math.PI) / 180;
3987
4030
  const viewHeight = 2 * Math.tan(vfov / 2) * cameraZ;
3988
4031
  const pxPerWorld = height / Math.max(1, viewHeight);
@@ -4007,6 +4050,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4007
4050
  opacity
4008
4051
  );
4009
4052
  } else if (shouldDeferLocalGridStyleForZoom === true) {
4053
+ this._applyLocalSnapGridMotionStyle(
4054
+ layer,
4055
+ smallStepPx,
4056
+ majorStepPx,
4057
+ opacity
4058
+ );
4010
4059
  this._localSnapGridStyleDeferredForZoom = true;
4011
4060
  }
4012
4061
 
@@ -4062,13 +4111,17 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4062
4111
  this._applyLocalSnapGridStyle(
4063
4112
  layer, styleKind, projection.smallStepPx, projection.majorStepPx, opacity);
4064
4113
  this._localSnapGridStyleDeferredForZoom = false;
4114
+ } else if (this.isZooming === true) {
4115
+ const vfov = (Number(this.camera?.fov || 45) * Math.PI) / 180;
4116
+ const pxPerWorld = height / Math.max(1, 2 * Math.tan(vfov / 2) * cameraZ);
4117
+ const projection = this._resolveLocalSnapGridWorldStep(pxPerWorld);
4118
+ this._applyLocalSnapGridMotionStyle(
4119
+ layer, projection.smallStepPx, projection.majorStepPx, opacity);
4120
+ this._localSnapGridStyleDeferredForZoom = true;
4065
4121
  }
4066
4122
  this._syncLocalSnapGridSpotlightPosition(width, height, left, top);
4067
4123
  this._lastLocalSnapGridPositionRevision = pointerRevision;
4068
4124
 
4069
- if (this.isZooming === true && styleKind !== 'dot') {
4070
- this._localSnapGridStyleDeferredForZoom = true;
4071
- }
4072
4125
  this._setLocalSnapGridVisible(true, opacity.toFixed(3));
4073
4126
  return true;
4074
4127
  }
@@ -9905,7 +9958,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
9905
9958
 
9906
9959
  // Detach current board (save to JS cache)
9907
9960
  if (boardToDetach) {
9908
- _detachCurrentBoard(boardToDetach);
9961
+ _detachCurrentBoard(boardToDetach, targetBoardId);
9909
9962
  }
9910
9963
  moduleInstance.setCanvasPhase?.(CanvasPhase.BoardSwitching, 'swapBoard', {
9911
9964
  fromBoardId: boardToDetach || null,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-qric6rBUBS5gmgoB1gW4vDCInw7tghBDQoQvSie1BBE=",
4
+ "hash": "sha256-pm9gUyCN7xLw9EaSc1lL5kN8jJ23nv5LAeniQeW0HHY=",
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.o29fdql6j5.dll": "MindExecution.Core.dll",
126
- "MindExecution.Kernel.98wpeg0ntq.dll": "MindExecution.Kernel.dll",
127
- "MindExecution.Plugins.Admin.y25y20jkiv.dll": "MindExecution.Plugins.Admin.dll",
128
- "MindExecution.Plugins.Business.guko3zr1rb.dll": "MindExecution.Plugins.Business.dll",
129
- "MindExecution.Plugins.Concept.qmin06apyt.dll": "MindExecution.Plugins.Concept.dll",
130
- "MindExecution.Plugins.Directory.6rw2l9utyr.dll": "MindExecution.Plugins.Directory.dll",
131
- "MindExecution.Plugins.PlanMaster.72ir717kho.dll": "MindExecution.Plugins.PlanMaster.dll",
132
- "MindExecution.Plugins.YouTube.rkge49vbw6.dll": "MindExecution.Plugins.YouTube.dll",
133
- "MindExecution.Shared.q4dgev2e3z.dll": "MindExecution.Shared.dll",
134
- "MindExecution.Web.ckdrqv28k2.dll": "MindExecution.Web.dll",
125
+ "MindExecution.Core.7oa1zr128r.dll": "MindExecution.Core.dll",
126
+ "MindExecution.Kernel.dqr12udjsr.dll": "MindExecution.Kernel.dll",
127
+ "MindExecution.Plugins.Admin.6bt51zpdq7.dll": "MindExecution.Plugins.Admin.dll",
128
+ "MindExecution.Plugins.Business.e92nh6aw24.dll": "MindExecution.Plugins.Business.dll",
129
+ "MindExecution.Plugins.Concept.z5rfp7c5gn.dll": "MindExecution.Plugins.Concept.dll",
130
+ "MindExecution.Plugins.Directory.6qmfycdkxt.dll": "MindExecution.Plugins.Directory.dll",
131
+ "MindExecution.Plugins.PlanMaster.lbbov61zg3.dll": "MindExecution.Plugins.PlanMaster.dll",
132
+ "MindExecution.Plugins.YouTube.7vjisvqu3j.dll": "MindExecution.Plugins.YouTube.dll",
133
+ "MindExecution.Shared.ydgyfah35e.dll": "MindExecution.Shared.dll",
134
+ "MindExecution.Web.b68gpm21e3.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.o29fdql6j5.dll": "sha256-UH96IvrfKWrOj39ykdSicRtoQMA/A3nimUSnS+GUc/k=",
280
- "MindExecution.Kernel.98wpeg0ntq.dll": "sha256-aT2gedrAs1kPtzQ7YFoujKj5yXcOgJluv9A+OgiIrAk=",
281
- "MindExecution.Plugins.Business.guko3zr1rb.dll": "sha256-eEExPltiVWL6o1b/G8kjBnImWkINqQxxJ7twmvmenrw=",
282
- "MindExecution.Plugins.Concept.qmin06apyt.dll": "sha256-EnaBEIap9etgziFfzISb42qPZ1OrE4c8X+18Y+DbP3w=",
283
- "MindExecution.Plugins.PlanMaster.72ir717kho.dll": "sha256-Lw/Z7y9A7pBq3VEI7Z84VXlQYnH+bsCl6+Z9C3MQtMY=",
284
- "MindExecution.Shared.q4dgev2e3z.dll": "sha256-hg8vP8F3M9KsvXgz6rJ6hKALTMVkEoaMGtffcpzHuCM=",
285
- "MindExecution.Web.ckdrqv28k2.dll": "sha256-lCycPpTeLEiG095TBjUsea+emdlYObNIYH8yaWyt794="
279
+ "MindExecution.Core.7oa1zr128r.dll": "sha256-uTTfp+Iu3C7jgsyLauWGcGYcFQsEcPHA1FGCKQXrTGk=",
280
+ "MindExecution.Kernel.dqr12udjsr.dll": "sha256-pUxuISA8V4Ro0H+636QoXiU5+VF3BW7L27zas6ovW0U=",
281
+ "MindExecution.Plugins.Business.e92nh6aw24.dll": "sha256-MpREZ+eukJRDg6mQ7ZOEAe6yHl9UtocC07LTTmFxI5E=",
282
+ "MindExecution.Plugins.Concept.z5rfp7c5gn.dll": "sha256-R2ye/oFIO0haYP3I01gV/4gpQBd1scfEusjPznFWbvg=",
283
+ "MindExecution.Plugins.PlanMaster.lbbov61zg3.dll": "sha256-UXaJeM7BqhQCv3DY1zkiXGJRNxquudkBYgmchgxnx00=",
284
+ "MindExecution.Shared.ydgyfah35e.dll": "sha256-di5LlqqDZKM+3+CBUxQUQ/rFwOF5laSkr1PCjz2pgdk=",
285
+ "MindExecution.Web.b68gpm21e3.dll": "sha256-nUEDIUiOGqD37D3xgqqysvvUQneVI5rxGZ6aBRZUI8U="
286
286
  },
287
287
  "lazyAssembly": {
288
- "MindExecution.Plugins.Admin.y25y20jkiv.dll": "sha256-xj9rsu8xcn/LmMtjcNHNukytbWa/wyuwoY4xAlppfAA=",
289
- "MindExecution.Plugins.Directory.6rw2l9utyr.dll": "sha256-Uis7pFLHDjVsw7i57UrV8/gNzw0mvSAFZqMATYW4WXc=",
290
- "MindExecution.Plugins.YouTube.rkge49vbw6.dll": "sha256-lbyn5GAqhcXcve5Py1BkleJ+7E5GLtnogojzkQzOE9g="
288
+ "MindExecution.Plugins.Admin.6bt51zpdq7.dll": "sha256-ogBaZoZztkITRjNx0LAIr0vZH2phNsJlQE5iRw6Ws+c=",
289
+ "MindExecution.Plugins.Directory.6qmfycdkxt.dll": "sha256-Mv2nGkAFk5n8CH/OVWfSL4vrEwNXBmZ8ULHFjeluERs=",
290
+ "MindExecution.Plugins.YouTube.7vjisvqu3j.dll": "sha256-7TKJ3SFwKH+iO+CRm3QxBuRIyNZGOcBp822L3KrEE1k="
291
291
  }
292
292
  },
293
293
  "cacheBootResources": true,
@@ -614,7 +614,7 @@
614
614
  }
615
615
 
616
616
  const base = '_content/MindExecution.Shared/js/';
617
- const scriptVersion = '20260817-grid-distance-fade-v974';
617
+ const scriptVersion = '20260819-board-owner-grid-v975';
618
618
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
619
619
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
620
620
  const criticalScripts = [
@@ -640,6 +640,7 @@
640
640
  'mind-map-multi-select.js',
641
641
  'mind-map-interactions.js',
642
642
  'mind-map-dnd.js',
643
+ 'mind-map-board-render-ownership.js',
643
644
  'mind-map-render-plan.js',
644
645
  'mind-map-normal-boundary-optimizer.js',
645
646
  'mind-map-lod-video-placeholder.js',
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "CPxDbiec",
2
+ "version": "c6MTEECG",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -82,7 +82,11 @@ self.assetsManifest = {
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-animated-image-preview.js"
83
83
  },
84
84
  {
85
- "hash": "sha256-bCeewrAc+qk9g2hGQiX7KREsHZh6sYFJRp5nKBGAkks=",
85
+ "hash": "sha256-W/h4gC38IZn54pM6q++JJFSbDBLokscPLSNvh3xMFpw=",
86
+ "url": "_content/MindExecution.Shared/js/mind-map-board-render-ownership.js"
87
+ },
88
+ {
89
+ "hash": "sha256-+YNEfvac1szWmQjPUmzKmTUVCS5qHcXNn6k2W2mlFQ8=",
86
90
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
87
91
  },
88
92
  {
@@ -434,44 +438,44 @@ self.assetsManifest = {
434
438
  "url": "_framework/MimeMapping.og9ys58ylm.dll"
435
439
  },
436
440
  {
437
- "hash": "sha256-UH96IvrfKWrOj39ykdSicRtoQMA/A3nimUSnS+GUc/k=",
438
- "url": "_framework/MindExecution.Core.o29fdql6j5.dll"
441
+ "hash": "sha256-uTTfp+Iu3C7jgsyLauWGcGYcFQsEcPHA1FGCKQXrTGk=",
442
+ "url": "_framework/MindExecution.Core.7oa1zr128r.dll"
439
443
  },
440
444
  {
441
- "hash": "sha256-aT2gedrAs1kPtzQ7YFoujKj5yXcOgJluv9A+OgiIrAk=",
442
- "url": "_framework/MindExecution.Kernel.98wpeg0ntq.dll"
445
+ "hash": "sha256-pUxuISA8V4Ro0H+636QoXiU5+VF3BW7L27zas6ovW0U=",
446
+ "url": "_framework/MindExecution.Kernel.dqr12udjsr.dll"
443
447
  },
444
448
  {
445
- "hash": "sha256-xj9rsu8xcn/LmMtjcNHNukytbWa/wyuwoY4xAlppfAA=",
446
- "url": "_framework/MindExecution.Plugins.Admin.y25y20jkiv.dll"
449
+ "hash": "sha256-ogBaZoZztkITRjNx0LAIr0vZH2phNsJlQE5iRw6Ws+c=",
450
+ "url": "_framework/MindExecution.Plugins.Admin.6bt51zpdq7.dll"
447
451
  },
448
452
  {
449
- "hash": "sha256-eEExPltiVWL6o1b/G8kjBnImWkINqQxxJ7twmvmenrw=",
450
- "url": "_framework/MindExecution.Plugins.Business.guko3zr1rb.dll"
453
+ "hash": "sha256-MpREZ+eukJRDg6mQ7ZOEAe6yHl9UtocC07LTTmFxI5E=",
454
+ "url": "_framework/MindExecution.Plugins.Business.e92nh6aw24.dll"
451
455
  },
452
456
  {
453
- "hash": "sha256-EnaBEIap9etgziFfzISb42qPZ1OrE4c8X+18Y+DbP3w=",
454
- "url": "_framework/MindExecution.Plugins.Concept.qmin06apyt.dll"
457
+ "hash": "sha256-R2ye/oFIO0haYP3I01gV/4gpQBd1scfEusjPznFWbvg=",
458
+ "url": "_framework/MindExecution.Plugins.Concept.z5rfp7c5gn.dll"
455
459
  },
456
460
  {
457
- "hash": "sha256-Uis7pFLHDjVsw7i57UrV8/gNzw0mvSAFZqMATYW4WXc=",
458
- "url": "_framework/MindExecution.Plugins.Directory.6rw2l9utyr.dll"
461
+ "hash": "sha256-Mv2nGkAFk5n8CH/OVWfSL4vrEwNXBmZ8ULHFjeluERs=",
462
+ "url": "_framework/MindExecution.Plugins.Directory.6qmfycdkxt.dll"
459
463
  },
460
464
  {
461
- "hash": "sha256-Lw/Z7y9A7pBq3VEI7Z84VXlQYnH+bsCl6+Z9C3MQtMY=",
462
- "url": "_framework/MindExecution.Plugins.PlanMaster.72ir717kho.dll"
465
+ "hash": "sha256-UXaJeM7BqhQCv3DY1zkiXGJRNxquudkBYgmchgxnx00=",
466
+ "url": "_framework/MindExecution.Plugins.PlanMaster.lbbov61zg3.dll"
463
467
  },
464
468
  {
465
- "hash": "sha256-lbyn5GAqhcXcve5Py1BkleJ+7E5GLtnogojzkQzOE9g=",
466
- "url": "_framework/MindExecution.Plugins.YouTube.rkge49vbw6.dll"
469
+ "hash": "sha256-7TKJ3SFwKH+iO+CRm3QxBuRIyNZGOcBp822L3KrEE1k=",
470
+ "url": "_framework/MindExecution.Plugins.YouTube.7vjisvqu3j.dll"
467
471
  },
468
472
  {
469
- "hash": "sha256-hg8vP8F3M9KsvXgz6rJ6hKALTMVkEoaMGtffcpzHuCM=",
470
- "url": "_framework/MindExecution.Shared.q4dgev2e3z.dll"
473
+ "hash": "sha256-di5LlqqDZKM+3+CBUxQUQ/rFwOF5laSkr1PCjz2pgdk=",
474
+ "url": "_framework/MindExecution.Shared.ydgyfah35e.dll"
471
475
  },
472
476
  {
473
- "hash": "sha256-lCycPpTeLEiG095TBjUsea+emdlYObNIYH8yaWyt794=",
474
- "url": "_framework/MindExecution.Web.ckdrqv28k2.dll"
477
+ "hash": "sha256-nUEDIUiOGqD37D3xgqqysvvUQneVI5rxGZ6aBRZUI8U=",
478
+ "url": "_framework/MindExecution.Web.b68gpm21e3.dll"
475
479
  },
476
480
  {
477
481
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -790,7 +794,7 @@ self.assetsManifest = {
790
794
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
791
795
  },
792
796
  {
793
- "hash": "sha256-Np9iGB2k1knSSxNYSd8t3Kg179tEC7UDj9eKiPe05/k=",
797
+ "hash": "sha256-8w2+rpH82kqP3ROeFCRsVPI79rYq7JtRXjv5ZoRYfjk=",
794
798
  "url": "_framework/blazor.boot.json"
795
799
  },
796
800
  {
@@ -866,7 +870,7 @@ self.assetsManifest = {
866
870
  "url": "icon-512.png"
867
871
  },
868
872
  {
869
- "hash": "sha256-d44zcpG/DmoTSCD304dejfBUpHeb5+gAh6dt+E9l2v4=",
873
+ "hash": "sha256-9dWOZC5NL0BDx5c/eCMKiBn/zJYlPtkAemjcgPyZeK8=",
870
874
  "url": "index.html"
871
875
  },
872
876
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: CPxDbiec */
1
+ /* Manifest version: c6MTEECG */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4