@mindexec/cli 0.2.476 → 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 -23
  6. package/wwwroot/_framework/{MindExecution.Core.cx2pre7qz2.dll → MindExecution.Core.ty1xewqp36.dll} +0 -0
  7. package/wwwroot/_framework/{MindExecution.Kernel.engfih12kr.dll → MindExecution.Kernel.h7rqjoo69o.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Plugins.Admin.xfunemn9zi.dll → MindExecution.Plugins.Admin.wrfrcvhjde.dll} +0 -0
  9. package/wwwroot/_framework/{MindExecution.Plugins.Business.ja94a5ze3i.dll → MindExecution.Plugins.Business.csbcyjurdh.dll} +0 -0
  10. package/wwwroot/_framework/{MindExecution.Plugins.Concept.3q05vzviqb.dll → MindExecution.Plugins.Concept.buomiysqjn.dll} +0 -0
  11. package/wwwroot/_framework/{MindExecution.Plugins.Directory.re4jjs91d1.dll → MindExecution.Plugins.Directory.7k00i2v769.dll} +0 -0
  12. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.89etwfquz1.dll → MindExecution.Plugins.PlanMaster.85i5ocraro.dll} +0 -0
  13. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.aqf4vztjji.dll → MindExecution.Plugins.YouTube.nbolrfakte.dll} +0 -0
  14. package/wwwroot/_framework/{MindExecution.Shared.9b1rucdxvv.dll → MindExecution.Shared.nqh4porv7x.dll} +0 -0
  15. package/wwwroot/_framework/{MindExecution.Web.ssp0n0xf1e.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.476",
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-v871';
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,11 +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
- // Delayed wakes are followed by requestAnimationFrame. On a 60Hz display,
93
- // a full 33ms timer plus that rAF produces a measured 50ms/20fps cadence.
94
- // Wake one display interval early so the final presentation lands near
95
- // 33ms/30fps while remaining aligned to the browser's paint cycle.
96
- const PARTICLE_THEME_IDLE_WAKE_DELAY_MS = 1000 / 60;
97
92
  const WHEEL_ZOOM_BURST_QUIET_FRAME_LIMIT = 12;
98
93
  const HOME_CAMERA_NORMAL_MID_Z = 8250;
99
94
  const HOME_DENSE_CLUSTER_MIN_CELL_SIZE = 1200;
@@ -5070,7 +5065,6 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5070
5065
  }
5071
5066
 
5072
5067
  _getThemeAnimationInterval(interactive = false, animationMode = null) {
5073
- const mode = this.themePerformanceMode || 'work';
5074
5068
  const isGpuParticleTheme = this.currentThemeName === 'Space3D' || this.currentThemeName === 'SpiritFlow';
5075
5069
  const themeAnimationMode = animationMode || getThemeAnimationModeCached(this);
5076
5070
 
@@ -5082,10 +5076,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5082
5076
  }
5083
5077
 
5084
5078
  if (isGpuParticleTheme) {
5085
- if (mode === 'demo') {
5086
- return 1;
5087
- }
5088
- return interactive ? 2 : 1;
5079
+ return 1;
5089
5080
  }
5090
5081
 
5091
5082
  return interactive ? 2 : 1;
@@ -6285,12 +6276,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6285
6276
  (frameStart - Number(this._lastLodPanVisibilityRefreshAt || 0)) >= LOD_PAN_VISIBILITY_REFRESH_INTERVAL_MS;
6286
6277
  const shouldUseAnimation60Fps = this.useAnimation60Fps === true && !isBoardLoading;
6287
6278
  const isGpuParticleTheme = this.currentThemeName === 'Space3D' || this.currentThemeName === 'SpiritFlow';
6288
- const shouldUseParticleAnimation30Fps =
6279
+ const shouldUseGpuParticleAnimation60Fps =
6289
6280
  isGpuParticleTheme === true &&
6290
- shouldUseAnimation60Fps !== true &&
6291
6281
  !isBoardLoading;
6292
6282
  const shouldUseAnimationLowFpsFrame =
6293
6283
  shouldUseAnimation60Fps !== true &&
6284
+ shouldUseGpuParticleAnimation60Fps !== true &&
6294
6285
  isIdleCadenceFrame === true &&
6295
6286
  !isBoardLoading;
6296
6287
  const hasPipelineForcedUpdate = hasNonCameraNavigationForcedUpdate;
@@ -6337,7 +6328,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6337
6328
  const isContinuousTheme = themeAnimationMode === 'continuous';
6338
6329
  const shouldBlockContinuousThemeDuringCameraNavigation =
6339
6330
  isContinuousTheme === true &&
6340
- isCameraNavigationOnlyInteractiveFrame === true;
6331
+ isCameraNavigationOnlyInteractiveFrame === true &&
6332
+ isGpuParticleTheme !== true;
6341
6333
  const allowContinuousThemeAnimationThisFrame =
6342
6334
  shouldBlockContinuousThemeDuringCameraNavigation === true
6343
6335
  ? false
@@ -6346,6 +6338,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6346
6338
  (shouldUpdate === true && !isCameraNavigationOnlyInteractiveFrame) ||
6347
6339
  hasNonCameraNavigationForcedUpdate === true ||
6348
6340
  isBoardLoading === true ||
6341
+ shouldUseGpuParticleAnimation60Fps === true ||
6349
6342
  shouldUseAnimation60Fps === true ||
6350
6343
  shouldUseAnimationLowFpsFrame === true ||
6351
6344
  this._forceThemeAnimationFrame === true);
@@ -6998,9 +6991,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6998
6991
  isZooming: this.isZooming === true,
6999
6992
  isResizing: this.isWindowResizing === true,
7000
6993
  isInteractiveFrame: isInteractiveFrame === true,
7001
- targetFps: shouldUseAnimation60Fps === true
6994
+ targetFps: shouldUseGpuParticleAnimation60Fps === true || shouldUseAnimation60Fps === true
7002
6995
  ? 60
7003
- : (shouldUseParticleAnimation30Fps === true ? 30 : null)
6996
+ : null
7004
6997
  });
7005
6998
  } else {
7006
6999
  this.currentThemeObject.animate(this.camera);
@@ -7578,11 +7571,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7578
7571
  shouldSyncTextOverlays !== true &&
7579
7572
  hasPendingAnimationWakeWork !== true;
7580
7573
  if (shouldParkIdleAnimationLoop) {
7581
- const idleAnimationDelayMs = this.useAnimation60Fps === true
7574
+ const idleAnimationDelayMs = this.useAnimation60Fps === true || shouldUseGpuParticleAnimation60Fps === true
7582
7575
  ? 0
7583
- : (shouldUseParticleAnimation30Fps === true
7584
- ? PARTICLE_THEME_IDLE_WAKE_DELAY_MS
7585
- : ANIMATION_IDLE_LOW_FPS_DELAY_MS);
7576
+ : ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7586
7577
  this._lastAnimationLoopDelayMs = idleAnimationDelayMs;
7587
7578
  this._animationLoopExecuting = false;
7588
7579
  this._scheduleAnimationLoop(loop, idleAnimationDelayMs);
@@ -7595,9 +7586,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7595
7586
  shouldUpdate !== true &&
7596
7587
  hasPendingAnimationWakeWork !== true;
7597
7588
  if (shouldContinueLowFpsIdleCadence) {
7598
- nextAnimationLoopDelayMs = shouldUseParticleAnimation30Fps === true
7599
- ? PARTICLE_THEME_IDLE_WAKE_DELAY_MS
7600
- : ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7589
+ nextAnimationLoopDelayMs = ANIMATION_IDLE_LOW_FPS_DELAY_MS;
7601
7590
  this._lastAnimationLoopDelayMs = nextAnimationLoopDelayMs;
7602
7591
  this._animationLoopExecuting = false;
7603
7592
  this._scheduleAnimationLoop(loop, nextAnimationLoopDelayMs);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-KJFNFtka3NkB1eImFq2tHfpv8lxpOgkY+x3aRLN1WQg=",
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.cx2pre7qz2.dll": "MindExecution.Core.dll",
126
- "MindExecution.Kernel.engfih12kr.dll": "MindExecution.Kernel.dll",
127
- "MindExecution.Plugins.Admin.xfunemn9zi.dll": "MindExecution.Plugins.Admin.dll",
128
- "MindExecution.Plugins.Business.ja94a5ze3i.dll": "MindExecution.Plugins.Business.dll",
129
- "MindExecution.Plugins.Concept.3q05vzviqb.dll": "MindExecution.Plugins.Concept.dll",
130
- "MindExecution.Plugins.Directory.re4jjs91d1.dll": "MindExecution.Plugins.Directory.dll",
131
- "MindExecution.Plugins.PlanMaster.89etwfquz1.dll": "MindExecution.Plugins.PlanMaster.dll",
132
- "MindExecution.Plugins.YouTube.aqf4vztjji.dll": "MindExecution.Plugins.YouTube.dll",
133
- "MindExecution.Shared.9b1rucdxvv.dll": "MindExecution.Shared.dll",
134
- "MindExecution.Web.ssp0n0xf1e.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.cx2pre7qz2.dll": "sha256-8EFO/TFkWPKbzUSyzzQIeKT0fk71BPeGO3g/dvd7CZ0=",
280
- "MindExecution.Kernel.engfih12kr.dll": "sha256-9jfnnT82jALXP26g0LHu8YjZzTh89UizyEX3wI5qUmg=",
281
- "MindExecution.Plugins.Business.ja94a5ze3i.dll": "sha256-9cmlPKva+jrkETDmhTjEHSM+nszmwAtPIp4G+r+rGUg=",
282
- "MindExecution.Plugins.Concept.3q05vzviqb.dll": "sha256-6+0r+jjw4jZ1Agxqqsf1TReVQlpuT6DNbYqkBj05Lzg=",
283
- "MindExecution.Plugins.PlanMaster.89etwfquz1.dll": "sha256-lDatg4Vdq8m5Vx6D59AbK2xgum/kX+BOYpP9PrsDo04=",
284
- "MindExecution.Shared.9b1rucdxvv.dll": "sha256-myKnzVHRh2/FxULDWFV9yjDJo6fya9ResEBr55VJGWA=",
285
- "MindExecution.Web.ssp0n0xf1e.dll": "sha256-ZDaCfRaCps+ABQqwNbjgu9pxQ73Nv3IdFCZxaILfp6Q="
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.xfunemn9zi.dll": "sha256-3Y/3h1JaubYdkbknLZQg5Tbg0oq6u1vSap2Sxf+cUkQ=",
289
- "MindExecution.Plugins.Directory.re4jjs91d1.dll": "sha256-E1C1OEOE50l/Gk2iZR4Er1XhuebJ4fAt5CJK/vNrCAQ=",
290
- "MindExecution.Plugins.YouTube.aqf4vztjji.dll": "sha256-XlyPzONOki6JuUOiazObfQP2Cnh29HpqtN4HGYrG/eU="
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-particle-30fps-v982';
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": "HPm7rkFu",
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-4pOmo9eR52ndvYD21w2oJ+H20sGk6evm6LgmJH3s9RI=",
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-8EFO/TFkWPKbzUSyzzQIeKT0fk71BPeGO3g/dvd7CZ0=",
450
- "url": "_framework/MindExecution.Core.cx2pre7qz2.dll"
449
+ "hash": "sha256-y0kmsQVBoNaZXm95wfkY9KkEyDmHgcKABljw9WpOSWo=",
450
+ "url": "_framework/MindExecution.Core.ty1xewqp36.dll"
451
451
  },
452
452
  {
453
- "hash": "sha256-9jfnnT82jALXP26g0LHu8YjZzTh89UizyEX3wI5qUmg=",
454
- "url": "_framework/MindExecution.Kernel.engfih12kr.dll"
453
+ "hash": "sha256-w6CuExbhLOvdzkDu5a7jhC8KospX233iCUTL/0eS/OQ=",
454
+ "url": "_framework/MindExecution.Kernel.h7rqjoo69o.dll"
455
455
  },
456
456
  {
457
- "hash": "sha256-3Y/3h1JaubYdkbknLZQg5Tbg0oq6u1vSap2Sxf+cUkQ=",
458
- "url": "_framework/MindExecution.Plugins.Admin.xfunemn9zi.dll"
457
+ "hash": "sha256-nMAUhiaGK/JjzAj1bHWyCQ5iPL6Ita9XQaHlQQNlAkI=",
458
+ "url": "_framework/MindExecution.Plugins.Admin.wrfrcvhjde.dll"
459
459
  },
460
460
  {
461
- "hash": "sha256-9cmlPKva+jrkETDmhTjEHSM+nszmwAtPIp4G+r+rGUg=",
462
- "url": "_framework/MindExecution.Plugins.Business.ja94a5ze3i.dll"
461
+ "hash": "sha256-VAvAo5FenruwK2/Hx46XWFZoPgWTV6oUl0KEPtVUUvM=",
462
+ "url": "_framework/MindExecution.Plugins.Business.csbcyjurdh.dll"
463
463
  },
464
464
  {
465
- "hash": "sha256-6+0r+jjw4jZ1Agxqqsf1TReVQlpuT6DNbYqkBj05Lzg=",
466
- "url": "_framework/MindExecution.Plugins.Concept.3q05vzviqb.dll"
465
+ "hash": "sha256-vX5h9FOWFWiziqfM+rf35kNx5jaSGn79SYtOa3Ol2Es=",
466
+ "url": "_framework/MindExecution.Plugins.Concept.buomiysqjn.dll"
467
467
  },
468
468
  {
469
- "hash": "sha256-E1C1OEOE50l/Gk2iZR4Er1XhuebJ4fAt5CJK/vNrCAQ=",
470
- "url": "_framework/MindExecution.Plugins.Directory.re4jjs91d1.dll"
469
+ "hash": "sha256-10zjlOMn685i3527iDgTqUe9j6UEF+HUvkXUPWz43bs=",
470
+ "url": "_framework/MindExecution.Plugins.Directory.7k00i2v769.dll"
471
471
  },
472
472
  {
473
- "hash": "sha256-lDatg4Vdq8m5Vx6D59AbK2xgum/kX+BOYpP9PrsDo04=",
474
- "url": "_framework/MindExecution.Plugins.PlanMaster.89etwfquz1.dll"
473
+ "hash": "sha256-HOMqPBEWjdBJHrWsigbvap2bik2Tz3U8SCCfR9sFSms=",
474
+ "url": "_framework/MindExecution.Plugins.PlanMaster.85i5ocraro.dll"
475
475
  },
476
476
  {
477
- "hash": "sha256-XlyPzONOki6JuUOiazObfQP2Cnh29HpqtN4HGYrG/eU=",
478
- "url": "_framework/MindExecution.Plugins.YouTube.aqf4vztjji.dll"
477
+ "hash": "sha256-Y6XbuevaE38KDPXY7HiV7A6RY6wF3OTNs3md0LRcoxs=",
478
+ "url": "_framework/MindExecution.Plugins.YouTube.nbolrfakte.dll"
479
479
  },
480
480
  {
481
- "hash": "sha256-myKnzVHRh2/FxULDWFV9yjDJo6fya9ResEBr55VJGWA=",
482
- "url": "_framework/MindExecution.Shared.9b1rucdxvv.dll"
481
+ "hash": "sha256-z7vefAz3QfhV/BirercJMntHiT2rAUX0GW+WdUpngkY=",
482
+ "url": "_framework/MindExecution.Shared.nqh4porv7x.dll"
483
483
  },
484
484
  {
485
- "hash": "sha256-ZDaCfRaCps+ABQqwNbjgu9pxQ73Nv3IdFCZxaILfp6Q=",
486
- "url": "_framework/MindExecution.Web.ssp0n0xf1e.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-FJ2gsz9lGPZl29F+ZSruUfQrC5QUJInrPE4cjp4038s=",
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-iS15ehBSXbGhfHEXPokEUpM+j8nq0cE3xDxvFpSfa7A=",
881
+ "hash": "sha256-iwJd9HZt9pWSQirXn3g0p71DXJTNx5jHwWNKO1FTyVI=",
882
882
  "url": "index.html"
883
883
  },
884
884
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: HPm7rkFu */
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