Add Ghost Fansub (#3290)

This commit is contained in:
Vetle Ledaal 2024-05-30 04:45:15 +00:00 committed by GitHub
parent 76719f2d88
commit 9409344a30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Ghost Fansub'
extClass = '.GhostFansub'
themePkg = 'madara'
baseUrl = 'https://ghostfansub.co'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.tr.ghostfansub
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GhostFansub : Madara(
"Ghost Fansub",
"https://ghostfansub.co",
"tr",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("tr")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}