Add YaoiFlix (#6014)

This commit is contained in:
Chopper 2024-11-14 03:25:30 -03:00 committed by Draff
parent 3843573b45
commit e435f0f3b8
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 31 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.tr.yaoiflix
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class YaoiFlix : Madara(
"Yaoi Flix",
"https://yaoiflix.gay",
"tr",
SimpleDateFormat("MMMM dd, yyyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Never
}