963ecdd89b8dcc3d0ae0e2252a9ac6e48ee1d359
All checks were successful
Release / Test backend (push) Successful in 47s
Release / Check ui (push) Successful in 1m38s
Release / Docker / caddy (push) Successful in 42s
Release / Docker / backend (push) Successful in 2m38s
Release / Docker / runner (push) Successful in 2m38s
Release / Upload source maps (push) Successful in 1m23s
Release / Docker / ui (push) Successful in 2m26s
Release / Gitea Release (push) Successful in 31s
Bug 1 — Auto-next not transitioning: audioExpanded defaulted to false on the new chapter page because audioStore.chapter still held the old chapter number when the page script initialized. The $effect only opened the panel when isPlaying was already true — a circular dependency (can't play without the panel, panel only opens when playing). Fix: also set audioExpanded=true when autoStartChapter targets this chapter, both in the initial $state and in the reactive $effect. Bug 2 — Resume starts at the end: onended called saveAudioTime() which captured currentTime≈duration and fired a PATCH 2 seconds later (after navigation had already completed). Next visit to that chapter restored the end-of-file position. Fix: in onended, cancel the debounced timer (clearTimeout) and immediately PATCH audioTime=0 for the finished chapter, so it always resumes from the beginning on re-visit.
LibNovel
Self-hosted audiobook platform. Go backend + SvelteKit UI + MinIO/PocketBase/Meilisearch.
Requirements
- Docker + Docker Compose
- just
- Doppler CLI
Setup
doppler login
doppler setup # project=libnovel, config=prd
Usage
just up # start everything
just down # stop
just logs # tail all logs
just log backend # tail one service
just build # rebuild images
just restart # down + up
just secrets # view/edit secrets
Secrets
Managed via Doppler (project=libnovel, config=prd). No .env files.
To add or update a secret:
doppler secrets set MY_SECRET=value
Description