Add DeccalScans (#3690)

* Add DeccalScans

* Cleanup
This commit is contained in:
Chopper 2024-06-22 04:36:45 -03:00 committed by Draff
parent d075391602
commit 8f7c89db70
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Deccal Scans'
extClass = '.DeccalScans'
themePkg = 'madara'
baseUrl = 'https://deccalscans.net'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,22 @@
package eu.kanade.tachiyomi.extension.tr.deccalscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class DeccalScans : Madara(
"Deccal Scans",
"https://deccalscans.net",
"tr",
SimpleDateFormat("dd MMM yyyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorDescription = ".manga-summary p"
override val mangaDetailsSelectorAuthor = ".manga-authors a"
}