All checks were successful
Release / Test backend (push) Successful in 44s
Release / Check ui (push) Successful in 1m53s
Release / Docker / caddy (push) Successful in 44s
Release / Docker / backend (push) Successful in 2m37s
Release / Docker / runner (push) Successful in 2m33s
Release / Upload source maps (push) Successful in 1m29s
Release / Docker / ui (push) Successful in 2m30s
Release / Gitea Release (push) Successful in 32s
Two issues causing announce to silently fail or permanently block navigation: 1. No hard timeout fallback on speechSynthesis.speak(): Chrome Android (and some desktop) silently drops utterances not triggered within a user-gesture window. If both onend and onerror fail to fire (a known browser bug), doNavigate() was never called and the chapter transition was permanently lost. Added an 8-second setTimeout fallback (safeNavigate) that forces navigation if the speech engine never resolves. safeNavigate is idempotent — guarded by a 'navigated' flag so it only fires once even if onend, onerror, and the timeout all fire. 2. audioStore.chapters only written inside startPlayback(): The onended handler reads audioStore.chapters to build the utterance text (Chapter N — Title). If auto-next navigated to this chapter and the user never manually pressed play (startPlayback was never called), chapters held whatever the previous AudioPlayer had written — potentially stale or empty on a book switch. Added a reactive $effect that keeps chapters in sync whenever the prop changes, same pattern as nextChapter.
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project
npx sv create my-app
To recreate this project with the same configuration:
# recreate this project
npx sv@0.12.4 create --template minimal --types ts --install npm ui
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.