diff --git a/.github/summary.yaml b/.github/summary.yaml index a97c160f..9d9abed2 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 00000000..980416dc --- /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, + ) +} +