Remove AstrumScans (#5617)

This commit is contained in:
Chopper 2024-10-21 10:40:48 -03:00 committed by Draff
parent 00a70bc406
commit 3804bafd6c
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 34 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Astrum Scans'
extClass = '.AstrumScans'
themePkg = 'madara'
baseUrl = 'https://astrumscans.xyz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,24 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.astrumscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class AstrumScans : Madara(
"Astrum Scans",
"https://astrumscans.xyz",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint = true
override val mangaSubString = "series"
}