Revert "Add hanmanwuzhe source" ()

Revert "Add hanmanwuzhe source ()"

This reverts commit adc6d00a5b5fad6f7cd678300494f5cbc61edcfe.
This commit is contained in:
stevenyomi 2024-11-07 11:19:06 +00:00 committed by Draff
parent bdc4f38a6f
commit 1ad22ed47d
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 32 deletions
src/zh/hanmanwuzhe
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/zh/hanmanwuzhe

View File

@ -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"

Binary file not shown.

Before

(image error) Size: 6.3 KiB

Binary file not shown.

Before

(image error) Size: 3.2 KiB

Binary file not shown.

Before

(image error) Size: 9.2 KiB

Binary file not shown.

Before

(image error) Size: 17 KiB

Binary file not shown.

Before

(image error) Size: 26 KiB

View File

@ -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<Page> {
val document = response.asJsoup()
return document.select("div.chapterbox li.pic img").mapIndexed { idx, img ->
Page(idx, imageUrl = img.attr("src"))
}
}
}