Add FenixProject ()

* 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
src/pt/fenixproject
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/pt/fenixproject

@ -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

(image error) Size: 9.0 KiB

Binary file not shown.

After

(image error) Size: 4.3 KiB

Binary file not shown.

After

(image error) Size: 15 KiB

Binary file not shown.

After

(image error) Size: 31 KiB

Binary file not shown.

After

(image error) Size: 52 KiB

@ -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
}