Add CultureSubs ()

This commit is contained in:
Chopper 2024-08-18 06:22:36 -03:00 committed by Draff
parent 4f58440542
commit 41ef482be7
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions
src/tr/culturesubs
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/tr/culturesubs

View File

@ -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

(image error) Size: 9.9 KiB

Binary file not shown.

After

(image error) Size: 4.6 KiB

Binary file not shown.

After

(image error) Size: 17 KiB

Binary file not shown.

After

(image error) Size: 35 KiB

Binary file not shown.

After

(image error) Size: 60 KiB

View File

@ -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()
}