From 66f25c30fc7caf92c7e3b6747b2a9ef2d48ae14c Mon Sep 17 00:00:00 2001 From: Batu Date: Sun, 13 Jul 2025 21:55:58 +0300 Subject: [PATCH] [Gafeland] Add source (#1963) Co-authored-by: Draken <131387159+dragonx943@users.noreply.github.com> --- .github/summary.yaml | 2 +- .../parsers/site/mangareader/tr/Gafeland.kt | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/tr/Gafeland.kt diff --git a/.github/summary.yaml b/.github/summary.yaml index a97c160f4..9d9abed21 100644 --- a/.github/summary.yaml +++ b/.github/summary.yaml @@ -1 +1 @@ -total: 1236 \ No newline at end of file +total: 1237 diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/tr/Gafeland.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/tr/Gafeland.kt new file mode 100644 index 000000000..980416dc5 --- /dev/null +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/tr/Gafeland.kt @@ -0,0 +1,17 @@ +package org.koitharu.kotatsu.parsers.site.mangareader.tr + +import org.koitharu.kotatsu.parsers.MangaLoaderContext +import org.koitharu.kotatsu.parsers.MangaSourceParser +import org.koitharu.kotatsu.parsers.model.MangaListFilterCapabilities +import org.koitharu.kotatsu.parsers.model.MangaParserSource +import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser + +@MangaSourceParser("GAFELAND", "Gafeland", "tr") +internal class Gafeland(context: MangaLoaderContext) : + MangaReaderParser(context, MangaParserSource.GAFELAND, "www.gafeland.com", pageSize = 20, searchPageSize = 10) { + override val filterCapabilities: MangaListFilterCapabilities + get() = super.filterCapabilities.copy( + isTagsExclusionSupported = false, + ) +} +