summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib/reader (unfollow)
Commit message (Collapse)AuthorLines
4 daysfrontend: Add fullscreen toggle in the readerWolfgang Müller-6/+49
4 daysfrontend: Rename floating utility to btn-transparentWolfgang Müller-2/+2
This more clearly describes what the utility is for.
4 daysfrontend: Implement a better page indicatorWolfgang Müller-18/+79
This replaces the very simplistic x/y page indicator with a visual bar at the bottom of the reader that allows the user quick access to any arbitrary page. At the margins it shows the current page number(s) and the total amount of pages.
5 daysfrontend: Fix page rendering in PageView for mismatched image sizesWolfgang Müller-1/+1
If we display two images next to each other whose dimensions do not line up nicely, 'grow' will for some reason cause the smaller image's div to grow less wide. Use 'w-full' instead to force the div to have full width.
5 daysfrontend: Migrate PageView to Svelte 5Wolfgang Müller-84/+14
10 daysfrontend: Migrate to Tailwind 4.0Wolfgang Müller-1/+1
10 daysfrontend: Increase lookaround when preloading page imagesWolfgang Müller-6/+11
Instead of preloading one image in next and previous direction, preload two.
10 daysfrontend: Migrate to Svelte 5Wolfgang Müller-35/+111
2025-01-25frontend/reader: Revert "Show loading indicators"Wolfgang Müller-33/+4
This reverts commit d297c6310a6a4db8dd7cc3efe6ff59620deadcc0. It seems that on slower systems it's actually better without this.
2024-07-22frontend/reader: Allow switching to first or last pageWolfgang Müller-1/+3
2024-07-22frontend/reader: Add simple page indicatorWolfgang Müller-0/+13
2024-07-22frontend/reader: Preload the next set of imagesWolfgang Müller-0/+22
2024-07-22frontend/reader: Show loading indicatorsWolfgang Müller-4/+33
Sometimes images may not load fast enough, resulting in the app being seemingly stuck displaying the same sets of images. Use a timeout to detect when images take too long to load and show a spinner instead.