From e325063260e1abf18c66966079f3b84e0446e81e Mon Sep 17 00:00:00 2001 From: mozzaru <100791931+mozzaru@users.noreply.github.com> Date: Fri, 9 May 2025 17:19:25 +0700 Subject: [PATCH] [Apkomik] Add Source (#1765) --- .github/summary.yaml | 2 +- .../kotatsu/parsers/site/mangareader/id/Apkomik.kt | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Apkomik.kt diff --git a/.github/summary.yaml b/.github/summary.yaml index 7225333d..81841e97 100644 --- a/.github/summary.yaml +++ b/.github/summary.yaml @@ -1 +1 @@ -total: 1223 \ No newline at end of file +total: 1224 \ No newline at end of file diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Apkomik.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Apkomik.kt new file mode 100644 index 00000000..d35f8ac3 --- /dev/null +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Apkomik.kt @@ -0,0 +1,13 @@ +package org.koitharu.kotatsu.parsers.site.mangareader.id + +import org.koitharu.kotatsu.parsers.MangaLoaderContext +import org.koitharu.kotatsu.parsers.MangaSourceParser +import org.koitharu.kotatsu.parsers.model.MangaParserSource +import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser +import java.util.Locale + +@MangaSourceParser("APKOMIK", "Apkomik", "id") +internal class Apkomik(context: MangaLoaderContext) : + MangaReaderParser(context, MangaParserSource.APKOMIK, "apkomik.cc", pageSize = 20, searchPageSize = 10) { + override val sourceLocale: Locale = Locale.ENGLISH +}