Remove GekkouScan (#2594)

This commit is contained in:
Chopper 2024-04-27 05:37:44 -03:00 committed by Draff
parent 8e9e4f02f6
commit c1a0d2af2d
7 changed files with 0 additions and 42 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Gekkou Scans'
extClass = '.GekkouScans'
themePkg = 'madara'
baseUrl = 'https://gekkou.site'
overrideVersionCode = 2
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,32 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.gekkouscan
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 GekkouScans : Madara(
"Gekkou Scans",
"https://gekkou.site",
"pt-BR",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")),
) {
// Theme changed from MMRCMS to Madara, again.
override val versionId: Int = 2
override val client: OkHttpClient = super.client.newBuilder()
.connectTimeout(1, TimeUnit.MINUTES)
.readTimeout(1, TimeUnit.MINUTES)
.writeTimeout(1, TimeUnit.MINUTES)
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint: Boolean = true
override val mangaDetailsSelectorTitle = "#manga-title"
override val mangaDetailsSelectorStatus = ".summary-heading:contains(Status) ~ .summary-content"
}