Kareadita / Kavita

Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
http://www.kavitareader.com
GNU General Public License v3.0
6.13k stars 316 forks source link

Parts of part numbers in filenames misread as series names #3156

Closed scgtrp closed 4 weeks ago

scgtrp commented 4 weeks ago

What happened?

I created a Reference library in my Kavita instance and dropped a pile of manuals and datasheets into it. Among others, I had these filenames in subdirectories thereof:

These are misidentified as:

What did you expect?

The above filenames to be categorized by the directories they are in, not by their misparsed filenames.

This is, of course, a slightly weird use of this software (most of my files are reference material and other nonfiction works so it makes somewhat more sense in context), and it's probably Non-Trivial to solve in a way that always works. I would be happy with a "use only directory structure and never parse filenames" checkbox at the library level.

Kavita Version Number - If you don not see your version number listed, please update Kavita and see if your issue still persists.

0.8.2 - Stable

What operating system is Kavita being hosted from?

Docker (Dockerhub Container)

If the issue is being seen on Desktop, what OS are you running where you see the issue?

Linux

If the issue is being seen in the UI, what browsers are you seeing the problem on?

Firefox

If the issue is being seen on Mobile, what OS are you running where you see the issue?

None

If the issue is being seen on the Mobile UI, what browsers are you seeing the problem on?

No response

Relevant log output

No response

Additional Notes

No response

majora2007 commented 4 weeks ago

Kavita doesn't work the way you are intending. If you need something that does work more like that, I believe Komga and Ubooquity both present series as the lowest folder and present the files with their names intact. Kavita will not behave that way and I have no intention to change that.

scgtrp commented 4 weeks ago

Fair enough.

In case anyone else lands here with the same question: I don't have the motivation to maintain a public fork just for this, but I'm now running my instance with this patch, which disables volume/series/chapter parsing for libraries of type Book.

patch ```diff diff --git a/API/Services/Tasks/Scanner/Parser/Parser.cs b/API/Services/Tasks/Scanner/Parser/Parser.cs index 840e7a6d..1544e3e2 100644 --- a/API/Services/Tasks/Scanner/Parser/Parser.cs +++ b/API/Services/Tasks/Scanner/Parser/Parser.cs @@ -850,7 +850,6 @@ public static class Parser { LibraryType.Manga => ParseMangaSeries(filename), LibraryType.Comic => ParseComicSeries(filename), - LibraryType.Book => ParseMangaSeries(filename), LibraryType.Image => ParseMangaSeries(filename), LibraryType.LightNovel => ParseMangaSeries(filename), LibraryType.ComicVine => ParseComicSeries(filename), @@ -864,7 +863,6 @@ public static class Parser { LibraryType.Manga => ParseMangaVolume(filename), LibraryType.Comic => ParseComicVolume(filename), - LibraryType.Book => ParseMangaVolume(filename), LibraryType.Image => ParseMangaVolume(filename), LibraryType.LightNovel => ParseMangaVolume(filename), LibraryType.ComicVine => ParseComicVolume(filename), @@ -878,7 +876,6 @@ public static class Parser { LibraryType.Manga => ParseMangaChapter(filename), LibraryType.Comic => ParseComicChapter(filename), - LibraryType.Book => ParseMangaChapter(filename), LibraryType.Image => ParseMangaChapter(filename), LibraryType.LightNovel => ParseMangaChapter(filename), LibraryType.ComicVine => ParseComicChapter(filename), ```
contributor commented 3 weeks ago

Looking for a way to "disable series" brought me here. I use Kavita only for books, and the problem is that search book by name doesn't work if a book was recognized as a part of series with other books.

Until there's a better solution, I'm disabling series with your patch to get "must have" feature - search. Thank you @scgtrp