@mindexec/cli 0.2.475 → 0.2.477

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 (19) hide show
  1. package/package.json +1 -1
  2. package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
  3. package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
  4. package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
  5. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +12 -19
  6. package/wwwroot/_framework/{MindExecution.Core.5oz806gln6.dll → MindExecution.Core.ty1xewqp36.dll} +0 -0
  7. package/wwwroot/_framework/{MindExecution.Kernel.jfsc26t6jl.dll → MindExecution.Kernel.h7rqjoo69o.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Plugins.Admin.4f1hhljks9.dll → MindExecution.Plugins.Admin.wrfrcvhjde.dll} +0 -0
  9. package/wwwroot/_framework/{MindExecution.Plugins.Business.320s5nhcal.dll → MindExecution.Plugins.Business.csbcyjurdh.dll} +0 -0
  10. package/wwwroot/_framework/{MindExecution.Plugins.Concept.mdxge25pcc.dll → MindExecution.Plugins.Concept.buomiysqjn.dll} +0 -0
  11. package/wwwroot/_framework/{MindExecution.Plugins.Directory.j0im38uwcb.dll → MindExecution.Plugins.Directory.7k00i2v769.dll} +0 -0
  12. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.agi5e28akr.dll → MindExecution.Plugins.PlanMaster.85i5ocraro.dll} +0 -0
  13. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.dhjioxusa0.dll → MindExecution.Plugins.YouTube.nbolrfakte.dll} +0 -0
  14. package/wwwroot/_framework/{MindExecution.Shared.2v0z3krjjz.dll → MindExecution.Shared.nqh4porv7x.dll} +0 -0
  15. package/wwwroot/_framework/{MindExecution.Web.cn6dtudfnb.dll → MindExecution.Web.211q3bf4mr.dll} +0 -0
  16. package/wwwroot/_framework/blazor.boot.json +21 -21
  17. package/wwwroot/index.html +1 -1
  18. package/wwwroot/service-worker-assets.js +24 -24
  19. package/wwwroot/service-worker.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.475",
3
+ "version": "0.2.477",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -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 = '20260822-particle-idle-30fps-v870';
8
+ const MINDMAP_CORE_BUILD_ID = '20260822-particle-60fps-motion-v872';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -89,7 +89,6 @@
89
89
  const CURSOR_WORLD_THICKNESS = 4;
90
90
  const RENDER_DEBUG_METRICS_CACHE_MS = 250;
91
91
  const ANIMATION_IDLE_LOW_FPS_DELAY_MS = 500;
92
- const PARTICLE_THEME_IDLE_FRAME_DELAY_MS = 1000 / 30;
93
92
  const WHEEL_ZOOM_BURST_QUIET_FRAME_LIMIT = 12;
94
93
  const HOME_CAMERA_NORMAL_MID_Z = 8250;
95
94
  const HOME_DENSE_CLUSTER_MIN_CELL_SIZE = 1200;
@@ -5066,7 +5065,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5066
5065
  }
5067
5066
 
5068
5067
  _getThemeAnimationInterval(interactive = false, animationMode = null) {
5069
- const mode = this.themePerformanceMode || 'work';
5070
5068
  const isGpuParticleTheme = this.currentThemeName === 'Space3D' || this.currentThemeName === 'SpiritFlow';
5071
5069
  const themeAnimationMode = animationMode || getThemeAnimationModeCached(this);
5072
5070
 
@@ -5078,10 +5076,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5078
5076
  }
5079
5077
 
5080
5078
  if (isGpuParticleTheme) {
5081
- if (mode === 'demo') {
5082
- return 1;
5083
- }
5084
- return interactive ? 2 : 1;
5079
+ return 1;
5085
5080
  }
5086
5081
 
5087
5082
  return interactive ? 2 : 1;
@@ -6281,12 +6276,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6281
6276
  (frameStart - Number(this._lastLodPanVisibilityRefreshAt || 0)) >= LOD_PAN_VISIBILITY_REFRESH_INTERVAL_MS;
6282
6277
  const shouldUseAnimation60Fps = this.useAnimation60Fps === true && !isBoardLoading;
6283
6278
  const isGpuParticleTheme = this.currentThemeName === 'Space3D' || this.currentThemeName === 'SpiritFlow';
6284
- const shouldUseParticleAnimation30Fps =
6279
+ const shouldUseGpuParticleAnimation60Fps =
6285
6280
  isGpuParticleTheme === true &&
6286
- shouldUseAnimation60Fps !== true &&
6287
6281
  !isBoardLoading;
6288
6282
  const shouldUseAnimationLowFpsFrame =
6289
6283
  shouldUseAnimation60Fps !== true &&
6284
+ shouldUseGpuParticleAnimation60Fps !== true &&
6290
6285
  isIdleCadenceFrame === true &&
6291
6286
  !isBoardLoading;
6292
6287
  const hasPipelineForcedUpdate = hasNonCameraNavigationForcedUpdate;
@@ -6333,7 +6328,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6333
6328
  const isContinuousTheme = themeAnimationMode === 'continuous';
6334
6329
  const shouldBlockContinuousThemeDuringCameraNavigation =
6335
6330
  isContinuousTheme === true &&
6336
- isCameraNavigationOnlyInteractiveFrame === true;
6331
+ isCameraNavigationOnlyInteractiveFrame === true &&
6332
+ isGpuParticleTheme !== true;
6337
6333
  const allowContinuousThemeAnimationThisFrame =
6338
6334
  shouldBlockContinuousThemeDuringCameraNavigation === true
6339
6335
  ? false
@@ -6342,6 +6338,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6342
6338
  (shouldUpdate === true && !isCameraNavigationOnlyInteractiveFrame) ||
6343
6339
  hasNonCameraNavigationForcedUpdate === true ||
6344
6340
  isBoardLoading === true ||
6341
+ shouldUseGpuParticleAnimation60Fps === true ||
6345
6342
  shouldUseAnimation60Fps === true ||
6346
6343
  shouldUseAnimationLowFpsFrame === true ||
6347
6344
  this._forceThemeAnimationFrame === true);
@@ -6994,9 +6991,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6994
6991
  isZooming: this.isZooming === true,
6995
6992
  isResizing: this.isWindowResizing === true,
6996
6993
  isInteractiveFrame: isInteractiveFrame === true,
6997
- targetFps: shouldUseAnimation60Fps === true
6994
+ targetFps: shouldUseGpuParticleAnimation60Fps === true || shouldUseAnimation60Fps === true
6998
6995
  ? 60
6999
- : (shouldUseParticleAnimation30Fps === true ? 30 : null)
6996
+ : null
7000
6997
  });
7001
6998
  } else {
7002
6999
  this.currentThemeObject.animate(this.camera);
@@ -7574,11 +7571,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7574
7571
  shouldSyncTextOverlays !== true &&
7575
7572
  hasPendingAnimationWakeWork !== true;
7576
7573
  if (shouldParkIdleAnimationLoop) {
7577
- const idleAnimationDelayMs = this.useAnimation60Fps === true
7574
+ const idleAnimationDelayMs = this.useAnimation60Fps === true || shouldUseGpuParticleAnimation60Fps === true
7578
7575
  ? 0
7579
- : (shouldUseParticleAnimation30Fps === true
7580
- ? PARTICLE_THEME_IDLE_FRAME_DELAY_MS
7581
- : ANIMATION_IDLE_LOW_FPS_DELAY_MS);
7576
+ : ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7582
7577
  this._lastAnimationLoopDelayMs = idleAnimationDelayMs;
7583
7578
  this._animationLoopExecuting = false;
7584
7579
  this._scheduleAnimationLoop(loop, idleAnimationDelayMs);
@@ -7591,9 +7586,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7591
7586
  shouldUpdate !== true &&
7592
7587
  hasPendingAnimationWakeWork !== true;
7593
7588
  if (shouldContinueLowFpsIdleCadence) {
7594
- nextAnimationLoopDelayMs = shouldUseParticleAnimation30Fps === true
7595
- ? PARTICLE_THEME_IDLE_FRAME_DELAY_MS
7596
- : ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7589
+ nextAnimationLoopDelayMs = ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7597
7590
  this._lastAnimationLoopDelayMs = nextAnimationLoopDelayMs;
7598
7591
  this._animationLoopExecuting = false;
7599
7592
  this._scheduleAnimationLoop(loop, nextAnimationLoopDelayMs);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-sDnKI4OUmJ72ejDB7f1Nz45Z59TiU/UmDappWg6tc/A=",
4
+ "hash": "sha256-9kmb4AsBr7x1FXATh+CYAlCa6MZ13MHHNVyOLy+jPto=",
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.wflwsce1yq.dll": "System.Private.CoreLib.dll",
125
- "MindExecution.Core.5oz806gln6.dll": "MindExecution.Core.dll",
126
- "MindExecution.Kernel.jfsc26t6jl.dll": "MindExecution.Kernel.dll",
127
- "MindExecution.Plugins.Admin.4f1hhljks9.dll": "MindExecution.Plugins.Admin.dll",
128
- "MindExecution.Plugins.Business.320s5nhcal.dll": "MindExecution.Plugins.Business.dll",
129
- "MindExecution.Plugins.Concept.mdxge25pcc.dll": "MindExecution.Plugins.Concept.dll",
130
- "MindExecution.Plugins.Directory.j0im38uwcb.dll": "MindExecution.Plugins.Directory.dll",
131
- "MindExecution.Plugins.PlanMaster.agi5e28akr.dll": "MindExecution.Plugins.PlanMaster.dll",
132
- "MindExecution.Plugins.YouTube.dhjioxusa0.dll": "MindExecution.Plugins.YouTube.dll",
133
- "MindExecution.Shared.2v0z3krjjz.dll": "MindExecution.Shared.dll",
134
- "MindExecution.Web.cn6dtudfnb.dll": "MindExecution.Web.dll",
125
+ "MindExecution.Core.ty1xewqp36.dll": "MindExecution.Core.dll",
126
+ "MindExecution.Kernel.h7rqjoo69o.dll": "MindExecution.Kernel.dll",
127
+ "MindExecution.Plugins.Admin.wrfrcvhjde.dll": "MindExecution.Plugins.Admin.dll",
128
+ "MindExecution.Plugins.Business.csbcyjurdh.dll": "MindExecution.Plugins.Business.dll",
129
+ "MindExecution.Plugins.Concept.buomiysqjn.dll": "MindExecution.Plugins.Concept.dll",
130
+ "MindExecution.Plugins.Directory.7k00i2v769.dll": "MindExecution.Plugins.Directory.dll",
131
+ "MindExecution.Plugins.PlanMaster.85i5ocraro.dll": "MindExecution.Plugins.PlanMaster.dll",
132
+ "MindExecution.Plugins.YouTube.nbolrfakte.dll": "MindExecution.Plugins.YouTube.dll",
133
+ "MindExecution.Shared.nqh4porv7x.dll": "MindExecution.Shared.dll",
134
+ "MindExecution.Web.211q3bf4mr.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.5oz806gln6.dll": "sha256-lX7hqlSSiSRsuJzB7h6Up9SpU7P3aYrJzVUcRdRR+IE=",
280
- "MindExecution.Kernel.jfsc26t6jl.dll": "sha256-74S9IXNNvnYGUwVboeyRuR6xqH/I4e2WffLD8UgpE7U=",
281
- "MindExecution.Plugins.Business.320s5nhcal.dll": "sha256-tR/+xIus4mOecil69Maf6AGTHlumlk/dH5WZ/GEGtoU=",
282
- "MindExecution.Plugins.Concept.mdxge25pcc.dll": "sha256-Bk0cG/bJei7/dkQaXTKuoJRwMKtRPnwB0jMS3S0fvhw=",
283
- "MindExecution.Plugins.PlanMaster.agi5e28akr.dll": "sha256-Vv0YylupqDzMMjXQix5ftpGgiUDMu2eU5gTdlx4RE+Y=",
284
- "MindExecution.Shared.2v0z3krjjz.dll": "sha256-HhIvs53kzsdIZmjzOS85TAGpqf02q5YkKPOBzhNDnp4=",
285
- "MindExecution.Web.cn6dtudfnb.dll": "sha256-GJizZu6YwEC8/Eyah+zm2NKrLxiUFLhdyyaC2nulYE8="
279
+ "MindExecution.Core.ty1xewqp36.dll": "sha256-y0kmsQVBoNaZXm95wfkY9KkEyDmHgcKABljw9WpOSWo=",
280
+ "MindExecution.Kernel.h7rqjoo69o.dll": "sha256-w6CuExbhLOvdzkDu5a7jhC8KospX233iCUTL/0eS/OQ=",
281
+ "MindExecution.Plugins.Business.csbcyjurdh.dll": "sha256-VAvAo5FenruwK2/Hx46XWFZoPgWTV6oUl0KEPtVUUvM=",
282
+ "MindExecution.Plugins.Concept.buomiysqjn.dll": "sha256-vX5h9FOWFWiziqfM+rf35kNx5jaSGn79SYtOa3Ol2Es=",
283
+ "MindExecution.Plugins.PlanMaster.85i5ocraro.dll": "sha256-HOMqPBEWjdBJHrWsigbvap2bik2Tz3U8SCCfR9sFSms=",
284
+ "MindExecution.Shared.nqh4porv7x.dll": "sha256-z7vefAz3QfhV/BirercJMntHiT2rAUX0GW+WdUpngkY=",
285
+ "MindExecution.Web.211q3bf4mr.dll": "sha256-tmaxCUi1B3ZRsT40FS3h7YBRRWhSkhmdbzQLiQzaxTY="
286
286
  },
287
287
  "lazyAssembly": {
288
- "MindExecution.Plugins.Admin.4f1hhljks9.dll": "sha256-cHb6YLLKQ2QnzRL09Eux4VNMT1JsIEp26oC268O6nQA=",
289
- "MindExecution.Plugins.Directory.j0im38uwcb.dll": "sha256-s+f1K8cPkx8ka/lb7avZJT3loPtovkl/qXJLkY3j31M=",
290
- "MindExecution.Plugins.YouTube.dhjioxusa0.dll": "sha256-IU/ga79SCspsZ+TeN38Y/SBfu+mzhb0jtRu4gnlj9s4="
288
+ "MindExecution.Plugins.Admin.wrfrcvhjde.dll": "sha256-nMAUhiaGK/JjzAj1bHWyCQ5iPL6Ita9XQaHlQQNlAkI=",
289
+ "MindExecution.Plugins.Directory.7k00i2v769.dll": "sha256-10zjlOMn685i3527iDgTqUe9j6UEF+HUvkXUPWz43bs=",
290
+ "MindExecution.Plugins.YouTube.nbolrfakte.dll": "sha256-Y6XbuevaE38KDPXY7HiV7A6RY6wF3OTNs3md0LRcoxs="
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 = '20260822-selection-particle-title-v981';
617
+ const scriptVersion = '20260822-particle-60fps-motion-v983';
618
618
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
619
619
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
620
620
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "rBmrDqka",
2
+ "version": "GxIACh96",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -90,7 +90,7 @@ self.assetsManifest = {
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-board-render-ownership.js"
91
91
  },
92
92
  {
93
- "hash": "sha256-ND0JQLzUTqTCz2C0tjAzZmUZbMlvFfVzXfgEq/rPumU=",
93
+ "hash": "sha256-Zg3spK1Ei6cgOAty49u1YEH2Duy6MgjroPjK4+YulmE=",
94
94
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
95
95
  },
96
96
  {
@@ -446,44 +446,44 @@ self.assetsManifest = {
446
446
  "url": "_framework/MimeMapping.og9ys58ylm.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-lX7hqlSSiSRsuJzB7h6Up9SpU7P3aYrJzVUcRdRR+IE=",
450
- "url": "_framework/MindExecution.Core.5oz806gln6.dll"
449
+ "hash": "sha256-y0kmsQVBoNaZXm95wfkY9KkEyDmHgcKABljw9WpOSWo=",
450
+ "url": "_framework/MindExecution.Core.ty1xewqp36.dll"
451
451
  },
452
452
  {
453
- "hash": "sha256-74S9IXNNvnYGUwVboeyRuR6xqH/I4e2WffLD8UgpE7U=",
454
- "url": "_framework/MindExecution.Kernel.jfsc26t6jl.dll"
453
+ "hash": "sha256-w6CuExbhLOvdzkDu5a7jhC8KospX233iCUTL/0eS/OQ=",
454
+ "url": "_framework/MindExecution.Kernel.h7rqjoo69o.dll"
455
455
  },
456
456
  {
457
- "hash": "sha256-cHb6YLLKQ2QnzRL09Eux4VNMT1JsIEp26oC268O6nQA=",
458
- "url": "_framework/MindExecution.Plugins.Admin.4f1hhljks9.dll"
457
+ "hash": "sha256-nMAUhiaGK/JjzAj1bHWyCQ5iPL6Ita9XQaHlQQNlAkI=",
458
+ "url": "_framework/MindExecution.Plugins.Admin.wrfrcvhjde.dll"
459
459
  },
460
460
  {
461
- "hash": "sha256-tR/+xIus4mOecil69Maf6AGTHlumlk/dH5WZ/GEGtoU=",
462
- "url": "_framework/MindExecution.Plugins.Business.320s5nhcal.dll"
461
+ "hash": "sha256-VAvAo5FenruwK2/Hx46XWFZoPgWTV6oUl0KEPtVUUvM=",
462
+ "url": "_framework/MindExecution.Plugins.Business.csbcyjurdh.dll"
463
463
  },
464
464
  {
465
- "hash": "sha256-Bk0cG/bJei7/dkQaXTKuoJRwMKtRPnwB0jMS3S0fvhw=",
466
- "url": "_framework/MindExecution.Plugins.Concept.mdxge25pcc.dll"
465
+ "hash": "sha256-vX5h9FOWFWiziqfM+rf35kNx5jaSGn79SYtOa3Ol2Es=",
466
+ "url": "_framework/MindExecution.Plugins.Concept.buomiysqjn.dll"
467
467
  },
468
468
  {
469
- "hash": "sha256-s+f1K8cPkx8ka/lb7avZJT3loPtovkl/qXJLkY3j31M=",
470
- "url": "_framework/MindExecution.Plugins.Directory.j0im38uwcb.dll"
469
+ "hash": "sha256-10zjlOMn685i3527iDgTqUe9j6UEF+HUvkXUPWz43bs=",
470
+ "url": "_framework/MindExecution.Plugins.Directory.7k00i2v769.dll"
471
471
  },
472
472
  {
473
- "hash": "sha256-Vv0YylupqDzMMjXQix5ftpGgiUDMu2eU5gTdlx4RE+Y=",
474
- "url": "_framework/MindExecution.Plugins.PlanMaster.agi5e28akr.dll"
473
+ "hash": "sha256-HOMqPBEWjdBJHrWsigbvap2bik2Tz3U8SCCfR9sFSms=",
474
+ "url": "_framework/MindExecution.Plugins.PlanMaster.85i5ocraro.dll"
475
475
  },
476
476
  {
477
- "hash": "sha256-IU/ga79SCspsZ+TeN38Y/SBfu+mzhb0jtRu4gnlj9s4=",
478
- "url": "_framework/MindExecution.Plugins.YouTube.dhjioxusa0.dll"
477
+ "hash": "sha256-Y6XbuevaE38KDPXY7HiV7A6RY6wF3OTNs3md0LRcoxs=",
478
+ "url": "_framework/MindExecution.Plugins.YouTube.nbolrfakte.dll"
479
479
  },
480
480
  {
481
- "hash": "sha256-HhIvs53kzsdIZmjzOS85TAGpqf02q5YkKPOBzhNDnp4=",
482
- "url": "_framework/MindExecution.Shared.2v0z3krjjz.dll"
481
+ "hash": "sha256-z7vefAz3QfhV/BirercJMntHiT2rAUX0GW+WdUpngkY=",
482
+ "url": "_framework/MindExecution.Shared.nqh4porv7x.dll"
483
483
  },
484
484
  {
485
- "hash": "sha256-GJizZu6YwEC8/Eyah+zm2NKrLxiUFLhdyyaC2nulYE8=",
486
- "url": "_framework/MindExecution.Web.cn6dtudfnb.dll"
485
+ "hash": "sha256-tmaxCUi1B3ZRsT40FS3h7YBRRWhSkhmdbzQLiQzaxTY=",
486
+ "url": "_framework/MindExecution.Web.211q3bf4mr.dll"
487
487
  },
488
488
  {
489
489
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -802,7 +802,7 @@ self.assetsManifest = {
802
802
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
803
803
  },
804
804
  {
805
- "hash": "sha256-RoOqCtF/Mt8lbyMaWb/5zrdLv2xxadGnJ6hYfTEiXxk=",
805
+ "hash": "sha256-yUYDRv8eX6/1+z2AEnpzB8VrjkUxIb0p6CCvkv/29oE=",
806
806
  "url": "_framework/blazor.boot.json"
807
807
  },
808
808
  {
@@ -878,7 +878,7 @@ self.assetsManifest = {
878
878
  "url": "icon-512.png"
879
879
  },
880
880
  {
881
- "hash": "sha256-5iVGkYozM42Y2ths+0zgMYehxk0R4xHBfFkcFiLI1JE=",
881
+ "hash": "sha256-iwJd9HZt9pWSQirXn3g0p71DXJTNx5jHwWNKO1FTyVI=",
882
882
  "url": "index.html"
883
883
  },
884
884
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: rBmrDqka */
1
+ /* Manifest version: GxIACh96 */
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