Remove RightDarkScan (#5800)

remove dead source
This commit is contained in:
bapeey 2024-10-31 02:29:52 -05:00 committed by Draff
parent 874ca2af62
commit da96de83ea
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 29 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'Rightdark Scan'
extClass = '.RightdarkScan'
themePkg = 'madara'
baseUrl = 'https://rsdleft.com'
overrideVersionCode = 4
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

View File

@ -1,20 +0,0 @@
package eu.kanade.tachiyomi.extension.es.rightdarkscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class RightdarkScan : Madara(
"Rightdark Scan",
"https://rsdleft.com",
"es",
SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimit(2, 1)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
}