Add MangaOnlineBlog (#5919)
This commit is contained in:
parent
cc48c9be5c
commit
4ab8d2b615
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Manga Online Blog'
|
||||
extClass = '.MangaOnlineBlog'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://mangaonline.blog'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,21 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.mangaonlineblog
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class MangaOnlineBlog : Madara(
|
||||
"Manga Online Blog",
|
||||
"https://mangaonline.blog",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue