-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
[FEATURE] Nested series #280
Comments
I am very interested in this feature. However, it would be nice if it could take folder structures of arbitrary depth into account. My use case includes TTRPG books, where I would need a deeper structure:
Example: |
I'm not sure I understand the scenario you're asking about. For my own clarity, is the ask:
It might be helpful to see an example of what you might expect the library to look like with your example. Copy and paste if you'd likeROOT
|-- Symbaroum
| |-- v1
| | |-- Adventures
| | | |-- The Chronicles of the Copper Crown
| | | | |-- Part 1 - The Promised Land.pdf
| | | | |-- Part 2 - The Promised Land.pdf
| | | | |-- etc.
| | |-- Some Other Adventure
| | | |-- Some Other Adventure.pdf
| | | |-- etc. {
"library": {
"name": "Symbaroum",
"series": [
{
"name": "...",
"subseries": [
{
"name": "..",
},
{
"name": "..",
"subseries": [
// etc
]
}
]
},
]
}
} |
Yes, exactly! Sorry if I have not made myself clear. I would also prefer your third - and your previously intended - variant. Deeply nested series/subseries would allow for very flexible structuring, which would stand out from the alternative solutions. |
Awesome, that works perfectly then since it aligns with my original plan 😅 I'm not sure if/how you are running Stump, but the |
I'm hesitant to give a direct answer mostly because there isn't necessarily a structure that isn't supported, e.g. Stump won't reject your filesystem organization. Wrt supported patterns, I am mostly referring to how it interprets the underlying files on disk and converts them to its own internal representation for querying, accessing, etc. Even if Stump doesn't visually organize things 100% to your liking, the file explorers built into the UI exist to fill the gaps until more patterns (e.g. this issue) are supported since it isn't feasible to support all possible organization patterns. This issue is specifically outlining an idea to break away from the flat-series mental model and allow for series to reference other series as children, similar or at least closer to how it would otherwise exist on disk. Separately, there are also thoughts/ideas/brain dumps to support things like skipping arbitrary depths, etc. Your screenshot likely falls under the |
I think this could be useful for simulating a serialized book where chapters are only released once at a time. Example: ROOT
|-- Series 1
| |-- Book 1
| | |-- Chapter 1.epub
| | |-- Chapter 2.epub
| |-- Book 2
| | |-- ...
|-- Series 2
| |-- ... There is probably a much better way to present this style of media but this seems the closest way without adding a new type specifically for serialized novels. The final goal would be running a scraper on a light novel site that pulls all the chapters to a book then uploads each one via the stump API. |
Is your feature request related to a problem? Please describe.
Support a new library pattern that allows for generating of nested series
Additional context
See #254 (comment) for more context
The text was updated successfully, but these errors were encountered: