Remove BerserkerScan (#4058)

This commit is contained in:
Chopper 2024-07-17 07:07:26 -03:00 committed by GitHub
parent 55bd531765
commit 4ef03d329e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 0 additions and 27 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'Berserker Scan'
extClass = '.BerserkerScan'
themePkg = 'mangathemesia'
baseUrl = 'https://ragnascan.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,18 +0,0 @@
package eu.kanade.tachiyomi.extension.es.berserkerscan
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class BerserkerScan : MangaThemesia(
"Berserker Scan",
"https://ragnascan.com",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimit(2, 1, TimeUnit.SECONDS)
.build()
}