mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 18:32:39 +01:00
Add Nexo Scans (#224)
* Adding requested source * Removing extra slash on link Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com> * Fix language from pt to pt-BR * Removing unnecessary override method * Fixing all requested changes --------- Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
parent
85adddaea6
commit
68970c0d96
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
17
multisrc/overrides/madara/nexoscans/src/NexoScans.kt
Normal file
17
multisrc/overrides/madara/nexoscans/src/NexoScans.kt
Normal file
@ -0,0 +1,17 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.nexoscans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class NexoScans : Madara(
|
||||
"Nexo Scans",
|
||||
"https://nexoscans.com",
|
||||
"pt-BR",
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
}
|
@ -371,6 +371,7 @@ class MadaraGenerator : ThemeSourceGenerator {
|
||||
SingleLang("NekoPost.co (unoriginal)", "https://www.nekopost.co", "th", isNsfw = false, className = "NekoPostCo"),
|
||||
SingleLang("NekoScan", "https://nekoscan.com", "en", overrideVersionCode = 2),
|
||||
SingleLang("NewManhua", "https://newmanhua.com", "en", isNsfw = true),
|
||||
SingleLang("Nexo Scans", "https://nexoscans.com", "pt-BR"),
|
||||
SingleLang("Night Comic", "https://www.nightcomic.com", "en", overrideVersionCode = 1),
|
||||
SingleLang("Niji Translations", "https://niji-translations.com", "ar", overrideVersionCode = 1),
|
||||
SingleLang("Nitro Manga", "https://nitromanga.com", "en", className = "NitroScans", overrideVersionCode = 1),
|
||||
|
Loading…
Reference in New Issue
Block a user