Add LowerWorld (#2846)

This commit is contained in:
Vetle Ledaal 2024-05-06 15:25:55 +00:00 committed by Draff
parent 2b23047ee0
commit 1c50b086a1
7 changed files with 25 additions and 0 deletions

View File

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

View File

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