Add MeowSubs (#2945)

This commit is contained in:
Vetle Ledaal 2024-05-10 15:13:39 +00:00 committed by Draff
parent 15aacb0eb9
commit b81469035f
7 changed files with 27 additions and 0 deletions

View File

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

View File

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