From adcbb9e464bb9033e406008ea9cd209486a292aa Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 13 Sep 2021 21:55:09 +0200 Subject: Fix mangadex search/chapters listing after mangadex api update, combine same author/artist into one --- plugins/Manga.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugins') diff --git a/plugins/Manga.hpp b/plugins/Manga.hpp index 020099e..74d8ed1 100644 --- a/plugins/Manga.hpp +++ b/plugins/Manga.hpp @@ -7,9 +7,15 @@ namespace QuickMedia { // Return false to stop iteration using PageCallback = std::function; + enum class CreatorType { + AUTHOR, + ARTIST + }; + struct Creator { std::string name; std::string url; + CreatorType creator_type; }; class MangaImagesPage : public Page { -- cgit v1.2.3