Add MeowSubs (#2945)
This commit is contained in:
parent
15aacb0eb9
commit
b81469035f
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'MeowSubs'
|
||||||
|
extClass = '.MeowSubs'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://meowsubs.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,17 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.tr.meowsubs
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class MeowSubs : Madara(
|
||||||
|
"MeowSubs",
|
||||||
|
"https://meowsubs.com",
|
||||||
|
"tr",
|
||||||
|
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
|
||||||
|
) {
|
||||||
|
override val seriesTypeSelector = ".post-content_item:contains(Tip) .summary-content"
|
||||||
|
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
}
|
Loading…
Reference in New Issue