Add ArgosHentai ()

* Add ArgosHentai

* Remove unused import
This commit is contained in:
Chopper 2024-06-04 02:28:56 -03:00 committed by Draff
parent 8106a2bab9
commit cae812f456
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions
src/pt/argoshentai
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/pt/argoshentai

@ -0,0 +1,10 @@
ext {
extName = 'Argos Hentai'
extClass = '.ArgosHentai'
themePkg = 'madara'
baseUrl = 'https://argoshentai.xyz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

(image error) Size: 2.9 KiB

Binary file not shown.

After

(image error) Size: 1.7 KiB

Binary file not shown.

After

(image error) Size: 3.8 KiB

Binary file not shown.

After

(image error) Size: 6.6 KiB

Binary file not shown.

After

(image error) Size: 8.8 KiB

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.pt.argoshentai
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class ArgosHentai : Madara(
"Argos Hentai",
"https://argoshentai.xyz",
"pt-BR",
SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}