parent
d075391602
commit
8f7c89db70
|
@ -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 |
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue