Add NirvanaScan (#5467)

This commit is contained in:
Chopper 2024-10-11 08:27:48 -03:00 committed by GitHub
parent a381b7c2d9
commit 07a8e2fbf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Nirvana Scan'
extClass = '.NirvanaScan'
themePkg = 'madara'
baseUrl = 'https://nirvanascan.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,19 @@
package eu.kanade.tachiyomi.extension.pt.nirvanascan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class NirvanaScan : Madara(
"Nirvana Scan",
"https://nirvanascan.com",
"pt-BR",
SimpleDateFormat("MMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useNewChapterEndpoint = true
}