From 14c0eaf273465a9742f15645d7491795b7bf2ec1 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Sun, 28 Sep 2025 06:48:07 +0700 Subject: [PATCH] =?UTF-8?q?Truy=E1=BB=87n=20Tranh=20Full:=20Add=20source?= =?UTF-8?q?=20(#2252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/summary.yaml | 2 +- .../parsers/site/madara/vi/TruyenTranhFull.kt | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/TruyenTranhFull.kt diff --git a/.github/summary.yaml b/.github/summary.yaml index 50d46efb..d082d2bf 100644 --- a/.github/summary.yaml +++ b/.github/summary.yaml @@ -1 +1 @@ -total: 1253 +total: 1254 \ No newline at end of file diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/TruyenTranhFull.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/TruyenTranhFull.kt new file mode 100644 index 00000000..12444149 --- /dev/null +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/vi/TruyenTranhFull.kt @@ -0,0 +1,14 @@ +package org.koitharu.kotatsu.parsers.site.madara.vi + +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.madara.MadaraParser + +@MangaSourceParser("TRUYENTRANHFULL", "Truyện Tranh Full", "vi") +internal class TruyenTranhFull(context: MangaLoaderContext) : + MadaraParser(context, MangaParserSource.TRUYENTRANHFULL, "truyentranhfull.net", 20) { + override val listUrl = "truyen-tranh/" + override val tagPrefix = "the-loai/" + override val datePattern = "dd/MM/yyyy" +}