Closed Demaar closed 2 weeks ago
@Demaar
In my defense, this use case is outside WebToEpub's original design intent.
Anyway, I've added proper support for series pages now.
Test versions for Firefox and Chrome have been uploaded to https://github.com/dteviot/WebToEpub/releases/tag/developer-build. Pick the one suitable for you, follow the "How to install from Source (for people who are not developers)" instructions at https://github.com/dteviot/WebToEpub/tree/ExperimentalTabMode#user-content-how-to-install-from-source-for-people-who-are-not-developers and let me know how it goes. Tested with:
Notes
Works so far for me. Issues:
@Demaar
W2E can't find the Author when downloading a series and as such just gives [unknown].
Fixed
The Single-Chapters are not numbered while the Multi-Chapters are
That's how the chapters are on site. Stories have different layout depending on number of chapters.
An option to disable the numbering.
Not happening. If it really bothers you, feel free to use the following EpubEditor https://github.com/dteviot/EpubEditor script to remove the chapter numbering from the created epub.
let toChange = [...dom.querySelectorAll(".title")];
for(let s of toChange) {
console.log(s);
s.querySelector("a")?.remove();
s.textContent = s.textContent.replace(":", "");
}
return 0 < toChange.length;
Test versions for Firefox and Chrome have been uploaded to https://github.com/dteviot/WebToEpub/releases/tag/developer-build. Pick the one suitable for you, follow the "How to install from Source (for people who are not developers)" instructions at https://github.com/dteviot/WebToEpub/tree/ExperimentalTabMode#user-content-how-to-install-from-source-for-people-who-are-not-developers and let me know how it goes. Tested with:
Notes Time taken: 177 minutes (total)
@Demaar
Updated version (1.0.1.0) has been submitted to Firefox and Chrome stores. Firefox version is available now. Chrome might be available in a few hours (typical) to 21 days.
Describe the bug When Using WebToEpub on a Series page, it lists the chapters of all the stories that are part of the Series in order. Stories that have only one chapter, however, are Ignored completely.
To Reproduce Steps to reproduce the behavior:
Expected behavior For all chapters to be listed.
Desktop (please complete the following information):
Additional context More Examples: 10 Works, All One chapter except one with Three which is all that shows up. Three Works, All One chapter, None of them show up