Add Dat-Gar Scan (#1723)

* Add DatGarScanlation

* Change name
This commit is contained in:
bapeey 2024-03-06 07:52:34 -05:00 committed by GitHub
parent 80027fcbc6
commit 5139f2cf51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 28 additions and 0 deletions

View File

@ -391,6 +391,7 @@ abstract class ZeistManga(
protected open val statusOnGoingList = listOf(
"ongoing",
"en curso",
"en emisión",
"ativo",
"lançando",
"مستمر",

View File

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

View File

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