-
-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Epub Reader v3 #1383
Comments
I'd be down for a penpot draft. I've made a team if you're interested @majora2007 or anyone else. I intended to publish feedback on the last major update. I'll do it here. (I'll get screenshots to show what I mean) Currently, as of 0.6.1:
|
I don't know if you solicit feedback, but bookmarks are the most important feature to me given the list above. |
Project Board.pdf I'm going to get back to the design of the epub reader if it's still needed. |
@puppysnuff I believe the bookmarking is fuctionnal as of November 2023. Probably was working earlier, didn't check. |
another suggestion: text-to-speech if you use edge for example, you can highlight a word and select "read" from the context menu. apparently the stylesheet is missing appropriate colors for that tho. that's what it is doing on edge: additionally kavita has big issues keeping the current reading line on top when resizing the window or loading state on a device with different aspect ratio and dpi. |
in case anyone cares: p .msreadout-word-highlight:not(.msreadout-inactive-highlight) {
background: transparent !important;
text-shadow: 0em 0em 1em, 0em 0em 0.2em;
color: color-mix(in srgb, currentcolor 70%, lawngreen) !important;
}
p .msreadout-line-highlight:not(.msreadout-inactive-highlight) {
background: transparent !important;
color: color-mix(in srgb, currentcolor 70%, lawngreen) !important;
} I did not touch the I had to add microsofts code present in edge: /* Copyright (C) Microsoft Corporation. All rights reserved. */
.msreadout-word-highlight:not(.msreadout-inactive-highlight) {
background: #ffff00 !important;
color: black !important;
}
.msreadout-line-highlight:not(.msreadout-inactive-highlight) {
background: #b2d6f3 !important;
color: black !important;
}
@media screen and (-ms-high-contrast: active) {
.msreadout-word-highlight:not(.msreadout-inactive-highlight) {
-ms-high-contrast-adjust: none;
background-color: Highlight !important;
color: HighlightText !important;
}
.msreadout-line-highlight:not(.msreadout-inactive-highlight) {
-ms-high-contrast-adjust: none;
background: yellow !important;
color: black !important;
}
} so now you know how this can be customized. |
Will the epub Reader be able to handle Manga better in the future? Another question altogether - is it possible to make settings per screen ratio or something similiar? |
As discussed in discord there are a few enhancements that https://github.com/ttu-ttu/ebook-reader has that would enhance the experience in kavita further. |
After playing with BookFusion's epub reader, I've been inspired to bring some of the functionality into Kavita's reader and streamline some of our UX to match some patterns found in BookFusion.
New Features:
Changes:
This ticket needs designs
The text was updated successfully, but these errors were encountered: