[dankefuerslesen] extract more metadata (#7915)

- author
- artist
- description
This commit is contained in:
Mike Fährmann
2025-07-28 10:43:13 +02:00
parent 15517ad45c
commit b986edd1ed
3 changed files with 10 additions and 1 deletions

View File

@@ -59,6 +59,9 @@ class DankefuerslesenChapterExtractor(DankefuerslesenBase, ChapterExtractor):
return {
"manga" : manga["title"],
"manga_slug": manga["slug"],
"author" : manga["author"],
"artist" : manga["artist"],
"description": manga["description"],
"title" : data["title"],
"volume" : text.parse_int(data["volume"]),
"chapter" : text.parse_int(chapter),

View File

@@ -6,5 +6,5 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
__version__ = "1.30.2"
__version__ = "1.30.3-dev"
__variant__ = None

View File

@@ -29,6 +29,9 @@ __tests__ = (
"manga" : "Awana-chan wa Kyou mo Shiawase",
"manga_slug": "awana-chan-wa-kyou-mo-shiawase",
"title" : "Eat some ramen!",
"artist" : "Tabayou",
"author" : "Tabayou",
"description": "<p>A convenience store part-timer who can't seem to do anything right: Awana-chan. Today, yet again, she messed up over and over, and she can't even count how many times she was told off... How will Awana-chan find happiness in a situation like this, without anyone else to rely on!? This is a manga about creating your own happiness!!</p>",
},
{
@@ -65,6 +68,9 @@ __tests__ = (
"manga" : "Raul and The Vampire",
"manga_slug": "raul-and-the-vampire",
"title" : "Volume 1 Extras",
"artist" : "Sonoguchi Naka",
"author" : "Sonoguchi Naka",
"description": "<a href=\"https://twitter.com/2525_25_25_25_\"><img src=\"https://i.imgur.com/dQCXZkU.png\" alt=\"twitter\"/>Artist's Twitter</a>\r\n<a href=\"https://www.pixiv.net/en/users/67164428\"><img src=\"https://i.imgur.com/oiVINmy.png\" alt=\"pixiv\"/>Artist's Pixiv</a>",
},
{