Remove BurningScans (#2491)
This commit is contained in:
parent
f68c0a5c5d
commit
eb8350da2d
|
@ -1,10 +0,0 @@
|
|||
ext {
|
||||
extName = 'Burning Scans'
|
||||
extClass = '.BurningScans'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://burningscans.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
Before Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.0 KiB |
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
|
@ -1,25 +0,0 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.burningscans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.Request
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class BurningScans : Madara(
|
||||
"Burning Scans",
|
||||
"https://burningscans.com",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(2)
|
||||
.build()
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
|
||||
override fun genresRequest(): Request {
|
||||
return GET("$baseUrl/?s=&post_type=wp-manga", headers)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue