Remove MangasOnline (#3683)
This commit is contained in:
parent
10afe22672
commit
51e5bd5027
|
@ -1,9 +0,0 @@
|
||||||
ext {
|
|
||||||
extName = 'Mangás Online'
|
|
||||||
extClass = '.MangasOnline'
|
|
||||||
themePkg = 'mangathemesia'
|
|
||||||
baseUrl = 'https://mangasonline.cc'
|
|
||||||
overrideVersionCode = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
|
@ -1,26 +0,0 @@
|
||||||
package eu.kanade.tachiyomi.extension.pt.mangasonline
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
import eu.kanade.tachiyomi.source.model.SChapter
|
|
||||||
import okhttp3.OkHttpClient
|
|
||||||
import okhttp3.Response
|
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Locale
|
|
||||||
import java.util.concurrent.TimeUnit
|
|
||||||
|
|
||||||
class MangasOnline : MangaThemesia(
|
|
||||||
"Mangás Online",
|
|
||||||
"https://mangasonline.cc",
|
|
||||||
"pt-BR",
|
|
||||||
dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")),
|
|
||||||
) {
|
|
||||||
|
|
||||||
override val client: OkHttpClient = super.client.newBuilder()
|
|
||||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
override fun chapterListParse(response: Response): List<SChapter> {
|
|
||||||
return super.chapterListParse(response).reversed()
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue