Init2
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
BIN
multisrc/overrides/madara/gekkouhentai/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/madara/gekkouhentai/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 138 KiB |
28
multisrc/overrides/madara/gekkouhentai/src/GekkouHentai.kt
Normal file
28
multisrc/overrides/madara/gekkouhentai/src/GekkouHentai.kt
Normal file
@@ -0,0 +1,28 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.gekkouhentai
|
||||
|
||||
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 GekkouHentai : Madara(
|
||||
"Gekkou Hentai",
|
||||
"https://hentai.gekkouscans.com.br",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd 'de' MMMMM 'de' YYYY", Locale("pt", "BR")),
|
||||
) {
|
||||
|
||||
// Theme changed from MMRCMS to Madara.
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user