diff --git a/src/en/manhuatop/build.gradle b/src/en/manhuatop/build.gradle new file mode 100644 index 000000000..9a3ba38b6 --- /dev/null +++ b/src/en/manhuatop/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'ManhuaTop' + extClass = '.ManhuaTop' + themePkg = 'madara' + baseUrl = 'https://manhuatop.org' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/en/manhuatop/res/mipmap-hdpi/ic_launcher.png b/src/en/manhuatop/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..befbd1bea Binary files /dev/null and b/src/en/manhuatop/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/manhuatop/res/mipmap-mdpi/ic_launcher.png b/src/en/manhuatop/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..cc8dbcfbf Binary files /dev/null and b/src/en/manhuatop/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/manhuatop/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhuatop/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..462690d48 Binary files /dev/null and b/src/en/manhuatop/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/manhuatop/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhuatop/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c031d5cc8 Binary files /dev/null and b/src/en/manhuatop/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/manhuatop/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhuatop/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..c25c88e83 Binary files /dev/null and b/src/en/manhuatop/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/manhuatop/src/eu/kanade/tachiyomi/extension/en/manhuatop/ManhuaTop.kt b/src/en/manhuatop/src/eu/kanade/tachiyomi/extension/en/manhuatop/ManhuaTop.kt new file mode 100644 index 000000000..fa0d72a64 --- /dev/null +++ b/src/en/manhuatop/src/eu/kanade/tachiyomi/extension/en/manhuatop/ManhuaTop.kt @@ -0,0 +1,18 @@ +package eu.kanade.tachiyomi.extension.en.manhuatop + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class ManhuaTop : Madara( + "ManhuaTop", + "https://manhuatop.org", + "en", + dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false + + override val mangaSubString = "manhua" + override val filterNonMangaItems = false +}