Add MRYaoi (#10240)

This commit is contained in:
Chopper 2025-08-23 12:03:24 -03:00 committed by Draff
parent 41a275917d
commit 00ec365e30
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'MR Yaoi'
extClass = '.MRYaoi'
themePkg = 'madara'
baseUrl = 'https://mrtenzus.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,22 @@
package eu.kanade.tachiyomi.extension.pt.mryaoi
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MRYaoi : Madara(
"MR Yaoi",
"https://mrtenzus.com",
"pt-BR",
SimpleDateFormat("MM/dd/yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}