Add SiteManga (#6799)
This commit is contained in:
parent
5723bb392d
commit
b0250b98f7
|
@ -0,0 +1,14 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Site Manga'
|
||||||
|
extClass = '.SiteManga'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://sitemanga.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':lib:randomua')
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
|
@ -0,0 +1,18 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.en.sitemanga
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class SiteManga : Madara(
|
||||||
|
"Site Manga",
|
||||||
|
"https://sitemanga.com",
|
||||||
|
"en",
|
||||||
|
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.US),
|
||||||
|
) {
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
||||||
|
|
||||||
|
override val filterNonMangaItems = false
|
||||||
|
}
|
Loading…
Reference in New Issue