Add MangaOnlineBlog (#5919)

This commit is contained in:
Chopper 2024-11-07 08:29:58 -03:00 committed by Draff
parent cc48c9be5c
commit 4ab8d2b615
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 30 additions and 0 deletions

View File

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

View File

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