[eric] 1.0.32 — fix blank onboarding videos (./ instead of / under file://)

This commit is contained in:
ciregenz
2026-05-11 00:03:08 -07:00
parent 56d99be9cc
commit 2cc7e0f080
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openswarm",
"version": "1.0.31",
"version": "1.0.32",
"description": "OpenSwarm — AI Agent Orchestrator",
"main": "main.js",
"scripts": {
@@ -8,7 +8,7 @@ export const step01: OnboardingStep = {
index: 1,
title: 'Connect an AI model',
description: 'This is the brain behind your agents.',
videoSrc: '/onboarding-videos/v2/01.mp4',
videoSrc: './onboarding-videos/v2/01.mp4',
videoDurationLabel: '0:24',
skipIf: hasModelConnected,
ops: [
@@ -8,7 +8,7 @@ export const step02: OnboardingStep = {
index: 2,
title: 'Enable agentic actions',
description: 'Allow agents to work across your apps.',
videoSrc: '/onboarding-videos/v2/02.mp4',
videoSrc: './onboarding-videos/v2/02.mp4',
videoDurationLabel: '0:24',
skipIf: hasAnyToolEnabled,
ops: [
@@ -8,7 +8,7 @@ export const step03: OnboardingStep = {
index: 3,
title: 'Launch your first Agent',
description: 'Click + to fire up a new Agent in a dashboard.',
videoSrc: '/onboarding-videos/v2/03.mp4',
videoSrc: './onboarding-videos/v2/03.mp4',
videoDurationLabel: '0:24',
skipIf: hasAnyAgentLaunched,
requiresDashboard: true,
@@ -8,7 +8,7 @@ export const step04: OnboardingStep = {
title: 'Use the built-in browser',
description:
'No more jumping between apps. You and your agents work in one place.',
videoSrc: '/onboarding-videos/v2/04.mp4',
videoSrc: './onboarding-videos/v2/04.mp4',
videoDurationLabel: '0:18',
// Runtime auto-prepends a "click into a dashboard" hop when the user
// isn't already on a #/dashboards/:id route. No need to repeat that in
@@ -7,7 +7,7 @@ export const step05: OnboardingStep = {
index: 5,
title: 'Have an agent use the browser',
description: 'Let an agent take control of your browser.',
videoSrc: '/onboarding-videos/v2/05.mp4',
videoSrc: './onboarding-videos/v2/05.mp4',
videoDurationLabel: '0:30',
requiresDashboard: true,
dependsOn: [{ stepId: 'use_browser', reopen: 'walk_again' }],
@@ -7,7 +7,7 @@ export const step06: OnboardingStep = {
index: 6,
title: 'Have an agent control other agents',
description: 'Let an agent orchestrate other agents.',
videoSrc: '/onboarding-videos/v2/06.mp4',
videoSrc: './onboarding-videos/v2/06.mp4',
videoDurationLabel: '0:34',
requiresDashboard: true,
ops: [
@@ -8,7 +8,7 @@ export const step07: OnboardingStep = {
index: 7,
title: 'Install a skill',
description: 'Teach agents how to handle specific tasks.',
videoSrc: '/onboarding-videos/v2/07.mp4',
videoSrc: './onboarding-videos/v2/07.mp4',
videoDurationLabel: '0:24',
skipIf: hasAnySkillInstalled,
ops: [
@@ -7,7 +7,7 @@ export const step08: OnboardingStep = {
index: 8,
title: 'Make an App',
description: 'Prompt interactive applications into existence.',
videoSrc: '/onboarding-videos/v2/08.mp4',
videoSrc: './onboarding-videos/v2/08.mp4',
videoDurationLabel: '0:42',
ops: [
{ kind: 'move_to', target: S.sidebarApps },