Add LowerWorld (#2846)
This commit is contained in:
parent
2b23047ee0
commit
1c50b086a1
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'LowerWorld'
|
||||||
|
extClass = '.LowerWorld'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://lower-world.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
|
@ -0,0 +1,15 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.tr.lowerworld
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class LowerWorld : Madara(
|
||||||
|
"LowerWorld",
|
||||||
|
"https://lower-world.com",
|
||||||
|
"tr",
|
||||||
|
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
|
||||||
|
) {
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||||
|
override val useNewChapterEndpoint = false
|
||||||
|
}
|
Loading…
Reference in New Issue