Remove RogMangas (#3684)

This commit is contained in:
Chopper 2024-06-22 04:32:03 -03:00 committed by Draff
parent 51e5bd5027
commit 15f0c1ff34
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 0 additions and 32 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'ROG Mangás'
extClass = '.RogMangas'
themePkg = 'madara'
baseUrl = 'https://rogmangas.com'
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

View File

@ -1,23 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.mangasoverall
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 RogMangas : Madara(
"ROG Mangás",
"https://rogmangas.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
// Changed their name from Mangás Overall to ROG Mangás.
override val id: Long = 7865569692125193686
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
}