codexmeter 1.0.9 → 1.0.12
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/dist/index.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-B53KAOk4.js"></script>
|
|
11
11
|
<link rel="stylesheet" crossorigin href="/assets/index-CVvcsIkn.css">
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
package/package.json
CHANGED
package/server/export-video.js
CHANGED
|
@@ -239,7 +239,7 @@ export function createExportManager({ getReplay, getSettledEnvelope, getBaseUrl
|
|
|
239
239
|
finished: window.__CODEXMETER_EXPORT__?.finished === true,
|
|
240
240
|
}));
|
|
241
241
|
const ratio = Math.min(1, Math.max(0, (playback.currentTimeMs || 0) / Math.max(job.duration_ms, 1)));
|
|
242
|
-
updateJob(job, 'rendering', 0.05 + ratio * 0.8, 'running');
|
|
242
|
+
updateJob(job, 'rendering', Math.max(job.progress || 0, 0.05 + ratio * 0.8), 'running');
|
|
243
243
|
if (playback.finished) break;
|
|
244
244
|
if (Date.now() - startedAt > Math.max(30000, job.duration_ms * 4)) {
|
|
245
245
|
throw new Error('Export playback timed out before completion');
|
|
@@ -113,8 +113,11 @@ export const OVERVIEW_INGEST_ANIMATION = {
|
|
|
113
113
|
displayTweenBaseMs: 240,
|
|
114
114
|
displayTweenLateMs: 420,
|
|
115
115
|
displayTweenLateWindowMs: 2200,
|
|
116
|
+
chartIntroWindowMs: 2200,
|
|
117
|
+
barsChartIntroUpdateDurationMs: 320,
|
|
116
118
|
barsChartUpdateDurationMs: 50,
|
|
117
119
|
barsChartTailUpdateDurationMs: 240,
|
|
120
|
+
donutsChartIntroUpdateDurationMs: 360,
|
|
118
121
|
donutsChartUpdateDurationMs: 50,
|
|
119
122
|
donutsChartTailUpdateDurationMs: 240,
|
|
120
123
|
|