| Commit message (Collapse) | Author | Age | Lines |
| |
|
|
|
|
| |
This more clearly describes what the utility is for.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
| |
This class was recently removed in commit 1421152 (frontend: Migrate to
Tailwind 4.0, 2025-02-14).
|
| |
|
| |
|
|
|
|
|
| |
This sneaky bug caused the next .pink rule to never end up in the
generated CSS.
|
| |
|
|
|
|
|
|
|
| |
Commit dc4db40 (frontend: Migrate to Svelte 5, 2025-02-13) accidentally
regressed reader behaviour where updates to the page layout and page
direction where no longer shown immediately. Make sure to bind PageView
to the comic form input to fix this.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Use the current date (year, month, and day) instead of generating a new
seed every time and potentially making the user unable to go back to see
results that were displayed a moment ago. This essentially makes the
frontpage display daily favourites and bookmarks.
Additionally make sure to set the seed in the filter when navigating to
the respective category.
|
|
|
|
|
|
|
| |
Since the data fetched in the statistics query will be invalidated by
basically any mutation and tracking the dependencies manually like we do
with other queries is not feasible, simply have it load from network
always.
|
| |
|
|
|
|
| |
This makes the badge indicator pop a bit better.
|
| |
|
|
|
|
|
| |
This makes hircine's behaviour more consistent with standard browser
behaviour (that would also open a new tab when control-clicking).
|
|
|
|
|
| |
Instead of preloading one image in next and previous direction, preload
two.
|
|
|
|
| |
This makes Archive card styling consistent with Comic cards.
|
| |
|
| |
|
|
|
|
|
| |
This reverts commit d297c6310a6a4db8dd7cc3efe6ff59620deadcc0. It seems
that on slower systems it's actually better without this.
|
| |
|
|
|
|
|
|
| |
Elements now have a consistent style applied to them when in focus.
Additionally, select elements will now have an outline when focused,
making it easier to notice the currently selected element.
|
|
|
|
|
| |
These two break the tabbing flow, instead focus the next item within the
container.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
| |
This includes changes to CSS in order to bring the look & feel in line
with the previous version as much as possible. We can now remove the
warning about TypeScript types (Svelecte 4 now includes them) and retire
the clunky handling of pending options.
Additionally, the focus issue has been fixed, allowing users to tab
through controls without getting stuck.
|
|
|
|
|
|
| |
A simple oversight that happened to still work. optionsPlaceholder was
using 'value' from global scope which can lead to type errors because
the check for undefined or null does not limit its type.
|
|
|
|
| |
Use an intermediary Item type that we can put in a union.
|
| |
|
|
|
|
|
|
|
|
|
| |
GraphQL integers are 32-bit as per spec [1] [2]. Implementations may
therefore error on large numbers. Since an archive's size can reasonably
exceed this value, make sure to report it as a float instead.
[1] https://graphql.org/learn/schema/
[2] https://github.com/graphql/graphql-js/issues/292#issuecomment-186702763
|
|
|