@foxglove/extension 2.59.0 → 3.0.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foxglove/extension",
3
- "version": "2.59.0",
3
+ "version": "3.0.0",
4
4
  "homepage": "https://foxglove.dev/",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -340,6 +340,12 @@ export namespace Experimental {
340
340
 
341
341
  /**
342
342
  * Map of compare data sources. Only present when multiple data sources are loaded in compare mode.
343
+ *
344
+ * When set, player times on this render state (`currentTime`, `startTime`, `endTime`) and
345
+ * remapped message `receiveTime` / `publishTime` values live on the shared compare clock
346
+ * (origin t=0), not wall-clock epoch. Prefer elapsed / seconds formatting for those values.
347
+ * Recover a source-local absolute time with `sourceTime = currentTime - timeOffset` using the
348
+ * matching entry's `timeOffset`.
343
349
  */
344
350
  comparisonSources?: ComparisonSources;
345
351