diff --git a/src/zh/hanmanwuzhe/build.gradle b/src/zh/hanmanwuzhe/build.gradle deleted file mode 100644 index 6291fd645..000000000 --- a/src/zh/hanmanwuzhe/build.gradle +++ /dev/null @@ -1,10 +0,0 @@ -ext { - extName = 'hanmanwuzhe' - extClass = '.hanmanwuzhe' - themePkg = 'mccms' - baseUrl = 'https://www.hanmanwuzhe.com' - overrideVersionCode = 1 - isNsfw = true -} - -apply from: "$rootDir/common.gradle" diff --git a/src/zh/hanmanwuzhe/res/mipmap-hdpi/ic_launcher.png b/src/zh/hanmanwuzhe/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index c5a25fe8f..000000000 Binary files a/src/zh/hanmanwuzhe/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/zh/hanmanwuzhe/res/mipmap-mdpi/ic_launcher.png b/src/zh/hanmanwuzhe/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 2988af4d0..000000000 Binary files a/src/zh/hanmanwuzhe/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/zh/hanmanwuzhe/res/mipmap-xhdpi/ic_launcher.png b/src/zh/hanmanwuzhe/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 3d655bbbd..000000000 Binary files a/src/zh/hanmanwuzhe/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/zh/hanmanwuzhe/res/mipmap-xxhdpi/ic_launcher.png b/src/zh/hanmanwuzhe/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index a4118520a..000000000 Binary files a/src/zh/hanmanwuzhe/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/zh/hanmanwuzhe/res/mipmap-xxxhdpi/ic_launcher.png b/src/zh/hanmanwuzhe/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 21176f9b1..000000000 Binary files a/src/zh/hanmanwuzhe/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/zh/hanmanwuzhe/src/eu/kanade/tachiyomi/extension/zh/hanmanwuzhe/hanmanwuzhe.kt b/src/zh/hanmanwuzhe/src/eu/kanade/tachiyomi/extension/zh/hanmanwuzhe/hanmanwuzhe.kt deleted file mode 100644 index 2939e56df..000000000 --- a/src/zh/hanmanwuzhe/src/eu/kanade/tachiyomi/extension/zh/hanmanwuzhe/hanmanwuzhe.kt +++ /dev/null @@ -1,22 +0,0 @@ -package eu.kanade.tachiyomi.extension.zh.hanmanwuzhe - -import eu.kanade.tachiyomi.multisrc.mccms.MCCMS -import eu.kanade.tachiyomi.multisrc.mccms.MCCMSConfig -import eu.kanade.tachiyomi.source.model.Page -import eu.kanade.tachiyomi.util.asJsoup -import okhttp3.Response - -class hanmanwuzhe : MCCMS( - "嘀嗒漫画", - "https://www.hanmanwuzhe.com", - "zh", - MCCMSConfig(useMobilePageList = true), -) { - - override fun pageListParse(response: Response): List { - val document = response.asJsoup() - return document.select("div.chapterbox li.pic img").mapIndexed { idx, img -> - Page(idx, imageUrl = img.attr("src")) - } - } -}