parent
7a92bf7fa7
commit
b6585fb9e9
|
@ -0,0 +1,22 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.manhastro
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class Manhastro : Madara(
|
||||
"Manhastro",
|
||||
"https://manhastro.com",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
|
@ -317,6 +317,7 @@ class MadaraGenerator : ThemeSourceGenerator {
|
|||
SingleLang("Mangaxico", "https://mangaxico.com", "es", isNsfw = true),
|
||||
SingleLang("MangaXP", "https://mangaxp.com", "en", overrideVersionCode = 1),
|
||||
SingleLang("MangaYami", "https://www.mangayami.club", "en", overrideVersionCode = 2),
|
||||
SingleLang("Manhastro", "https://manhastro.com", "pt-BR"),
|
||||
SingleLang("Manhatic", "https://manhatic.com", "ar", isNsfw = true),
|
||||
SingleLang("Manhua ES", "https://manhuaes.com", "en", overrideVersionCode = 6),
|
||||
SingleLang("Manhua Kiss", "https://manhuakiss.com", "en", isNsfw = true, overrideVersionCode = 1),
|
||||
|
|
Loading…
Reference in New Issue