Init2
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
BIN
multisrc/overrides/zeistmanga/mikoroku/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/zeistmanga/mikoroku/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 85 KiB |
26
multisrc/overrides/zeistmanga/mikoroku/src/MikoRoku.kt
Normal file
26
multisrc/overrides/zeistmanga/mikoroku/src/MikoRoku.kt
Normal file
@@ -0,0 +1,26 @@
|
||||
package eu.kanade.tachiyomi.extension.id.mikoroku
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.Response
|
||||
|
||||
class MikoRoku : ZeistManga("MikoRoku", "https://www.mikoroku.web.id", "id") {
|
||||
|
||||
override val popularMangaSelector = "div.PopularPosts article"
|
||||
override val popularMangaSelectorTitle = ".post-title a"
|
||||
override val popularMangaSelectorUrl = ".post-title a"
|
||||
|
||||
override val pageListSelector = "article#reader div.separator a"
|
||||
|
||||
override fun mangaDetailsParse(response: Response): SManga = SManga.create().apply {
|
||||
val document = response.asJsoup()
|
||||
with(document.selectFirst("div.section#main div.widget header")!!) {
|
||||
thumbnail_url = selectFirst("img")!!.attr("abs:src")
|
||||
genre = select("aside dl:has(dt:contains(Genre)) dd a")
|
||||
.joinToString { it.text() }
|
||||
status = parseStatus(selectFirst("span[data-status]")!!.text())
|
||||
}
|
||||
description = document.select("div.section#main div.widget div.grid #synopsis").text()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user