Add YaoiFlix (#6014)
This commit is contained in:
parent
3843573b45
commit
e435f0f3b8
|
@ -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 |
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue