Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 9.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
BIN
multisrc/overrides/mangabox/mangabat/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/mangabox/mangabat/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
17
multisrc/overrides/mangabox/mangabat/src/Mangabat.kt
Normal file
17
multisrc/overrides/mangabox/mangabat/src/Mangabat.kt
Normal file
@@ -0,0 +1,17 @@
|
||||
package eu.kanade.tachiyomi.extension.en.mangabat
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangabox.MangaBox
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import okhttp3.Request
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class Mangabat : MangaBox("Mangabat", "https://m.mangabat.com", "en", SimpleDateFormat("MMM dd,yy", Locale.ENGLISH)) {
|
||||
override fun popularMangaRequest(page: Int): Request = GET("$baseUrl/manga-list-all/$page?type=topview", headers)
|
||||
override fun popularMangaSelector() = "div.list-story-item"
|
||||
override val latestUrlPath = "manga-list-all/"
|
||||
override fun searchMangaSelector() = "div.list-story-item"
|
||||
override fun getAdvancedGenreFilters(): List<AdvGenre> = getGenreFilters()
|
||||
.drop(1)
|
||||
.map { AdvGenre(it.first, it.second) }
|
||||
}
|
||||
Reference in New Issue
Block a user