Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 7.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
multisrc/overrides/madara/fayscans/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/madara/fayscans/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
22
multisrc/overrides/madara/fayscans/src/FayScans.kt
Normal file
22
multisrc/overrides/madara/fayscans/src/FayScans.kt
Normal file
@@ -0,0 +1,22 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.fayscans
|
||||
|
||||
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 FayScans : Madara(
|
||||
"Fay Scans",
|
||||
"https://fayscans.com.br",
|
||||
"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
|
||||
}
|
||||
Reference in New Issue
Block a user