parent
5a1fdc542c
commit
3a76ddaf34
|
@ -391,6 +391,7 @@ abstract class ZeistManga(
|
|||
protected open val statusOnGoingList = listOf(
|
||||
"ongoing",
|
||||
"en curso",
|
||||
"en emisión",
|
||||
"ativo",
|
||||
"lançando",
|
||||
"مستمر",
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Dat-Gar Scan'
|
||||
extClass = '.DatGarScanlation'
|
||||
themePkg = 'zeistmanga'
|
||||
baseUrl = 'https://datgarscanlation.blogspot.com'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 9.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
|
@ -0,0 +1,18 @@
|
|||
package eu.kanade.tachiyomi.extension.es.datgarscanlation
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class DatGarScanlation : ZeistManga(
|
||||
"Dat-Gar Scan",
|
||||
"https://datgarscanlation.blogspot.com",
|
||||
"es",
|
||||
) {
|
||||
override val useNewChapterFeed = true
|
||||
override val hasFilters = true
|
||||
override val hasLanguageFilter = false
|
||||
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(2)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue