Yaoi Flix: update domain (#8291)

* Revert "Remove broken extensions/sites (#8167)"

Partial.
This reverts commit 5e1a1cd5ef34852fe524287a81d9769d34661713.

* Yaoi Flix: update domain
This commit is contained in:
Vetle Ledaal 2025-03-31 16:41:06 +02:00 committed by Draff
parent 153934bed7
commit 485c7f078e
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.kim'
overrideVersionCode = 1
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.kim",
"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
}