Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 7.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
multisrc/overrides/madara/manhwafull/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/madara/manhwafull/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 131 KiB |
26
multisrc/overrides/madara/manhwafull/src/Manhwafull.kt
Normal file
26
multisrc/overrides/madara/manhwafull/src/Manhwafull.kt
Normal file
@@ -0,0 +1,26 @@
|
||||
package eu.kanade.tachiyomi.extension.en.manhwafull
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import okhttp3.CacheControl
|
||||
import okhttp3.Request
|
||||
|
||||
class Manhwafull : Madara("Manhwafull", "https://manhwafull.com", "en") {
|
||||
|
||||
override fun popularMangaNextPageSelector(): String? = "a.nextpostslink"
|
||||
|
||||
override fun popularMangaRequest(page: Int): Request {
|
||||
return GET(
|
||||
"$baseUrl/manga-mwf/page/$page/?m_orderby=views",
|
||||
headers,
|
||||
CacheControl.FORCE_NETWORK,
|
||||
)
|
||||
}
|
||||
override fun latestUpdatesRequest(page: Int): Request {
|
||||
return GET(
|
||||
"$baseUrl/manga-mwf/page/$page/?m_orderby=latest",
|
||||
headers,
|
||||
CacheControl.FORCE_NETWORK,
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user