From 2067f76ced70fea91f61b852084f7c10a51a1d89 Mon Sep 17 00:00:00 2001 From: Koala <6156589+Shik3i@users.noreply.github.com> Date: Mon, 25 May 2026 10:08:02 +0200 Subject: [PATCH] improve onboarding copy - add welcome step, friendlier text, 5 steps --- extension/popup.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/extension/popup.js b/extension/popup.js index 6bc5579..c865c6d 100644 --- a/extension/popup.js +++ b/extension/popup.js @@ -1207,10 +1207,11 @@ function updateLobbyUI(lobby, peers) { // --- Onboarding Tour --- const onboardingSteps = [ - { icon: '\u{1F3E0}', title: 'Room Tab', text: 'Create or join a room to sync with friends. Share the invite link!' }, - { icon: '\u{1F3AC}', title: 'Sync Tab', text: 'Select your video tab and control playback. Force Sync fixes drift.' }, - { icon: '\u2699\uFE0F', title: 'Settings', text: 'Customize your username, filter noise tabs, and toggle auto-sync.' }, - { icon: '\u{1F527}', title: 'Dev Tab', text: 'Debug connection status, video state, and view action history.' } + { icon: '\u{1F44B}', title: 'Welcome to KoalaSync!', text: 'Watch videos together in perfect sync — no matter where you are. Let\'s take a quick tour!' }, + { icon: '\u{1F3E0}', title: 'Room Tab', text: 'Create a room and share the invite link with friends. Anyone with the link can join instantly.' }, + { icon: '\u{1F3AC}', title: 'Sync Tab', text: 'Pick the tab with your video. Play, pause, and seek — everyone stays in sync. Drift? Just hit Force Sync.' }, + { icon: '\u2699\uFE0F', title: 'Settings', text: 'Pick a fun username, hide distracting tabs, and enable notifications so you never miss a moment.' }, + { icon: '\u{1F389}', title: 'You\'re all set!', text: 'Open a video, create a room, and start watching together. Enjoy!' } ]; let onboardingStep = 0;