🚀 Auto-deploy: melhoria no snap e medição AR em 31/05/2026 01:24:49

This commit is contained in:
2026-05-31 01:24:49 +00:00
parent 43ce36e7a6
commit c798179560
11 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -75,7 +75,7 @@ export function startRecording() {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `tracksteel-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.${ext}`;
a.download = `steelxr-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.${ext}`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
@@ -123,7 +123,7 @@ export function captureScreenshot(): string | null {
// Trigger download
const a = document.createElement('a');
a.href = dataUrl;
a.download = `tracksteel-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.png`;
a.download = `steelxr-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.png`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);