From cc43faabdd1b457689f30043325d82ce3ee46dd4 Mon Sep 17 00:00:00 2001 From: tristantr Date: Tue, 26 May 2026 10:35:16 +0200 Subject: [PATCH] Make recordings optional, encourage them for discoverability - Submit for review no longer gated on full recordings - Footer hint now frames recordings as boosting approval speed and public Hub featuring, not as a hard requirement - Progress card label switched from 'Recordings needed' to 'Recordings recommended' - Items without a recording display a yellow 'No recording' badge in every phase so the gap stays visible after submission Co-Authored-By: Claude Opus 4.7 (1M context) --- .../components/workspaceSettings/DeployToHub.svelte | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/src/lib/components/workspaceSettings/DeployToHub.svelte b/frontend/src/lib/components/workspaceSettings/DeployToHub.svelte index a34a1c3bfa..6a1269b77a 100644 --- a/frontend/src/lib/components/workspaceSettings/DeployToHub.svelte +++ b/frontend/src/lib/components/workspaceSettings/DeployToHub.svelte @@ -565,7 +565,7 @@ ? 'text-green-900 dark:text-green-100' : 'text-yellow-900 dark:text-yellow-100'}" > - {allRecorded ? 'Ready to submit' : 'Recordings needed'} + {allRecorded ? 'Full recordings' : 'Recordings recommended'} {/if} @@ -607,6 +607,7 @@ {/if} {:else if phase === 'draft'} + No recording + {:else} + No recording {/if} {/if} {#if canPublishApp(it.kind)} @@ -673,16 +676,15 @@ {:else if phase === 'draft'} {#if allRecorded} - All scripts and flows have a recording. Ready to submit. + All scripts and flows have a recording — best chance of approval and featuring. {:else} {recordableItems.filter((i) => i.rec === 'recorded').length} of {recordableItems.length} - scripts/flows recorded. Add a recording to each before submitting. + recorded. Bundles with full recordings get approved faster and featured on the public Hub. {/if}