Add CultureSubs (#4664)
This commit is contained in:
parent
4f58440542
commit
41ef482be7
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Culture Subs'
|
||||||
|
extClass = '.CultureSubs'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://culturesubs.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 9.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
Binary file not shown.
After Width: | Height: | Size: 60 KiB |
|
@ -0,0 +1,17 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.tr.culturesubs
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class CultureSubs : MangaThemesia(
|
||||||
|
"Culture Subs",
|
||||||
|
"https://culturesubs.com",
|
||||||
|
"tr",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("tr")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
Reference in New Issue