Add FenixProject (#3401)

* Add FenixProject

* Add rateLimit
This commit is contained in:
Chopper 2024-06-04 02:29:30 -03:00 committed by Draff
parent cae812f456
commit 05dfff4465
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 = 'Fenix Project'
extClass = '.FenixProject'
themePkg = 'madara'
baseUrl = 'https://fenixproject.xyz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.pt.fenixproject
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class FenixProject : Madara(
"Fenix Project",
"https://fenixproject.xyz",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Never
}