Add ArgosHentai (#3398)

* 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
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions

View File

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

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

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