Add Siimanga (#2699)

This commit is contained in:
Vetle Ledaal 2024-05-02 00:49:22 +00:00 committed by Draff
parent fe705dab68
commit feeec15597
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Siimanga'
extClass = '.Siimanga'
themePkg = 'madara'
baseUrl = 'https://siimanga.cyou'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.id.siimanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Siimanga : Madara(
"Siimanga",
"https://siimanga.cyou",
"id",
dateFormat = SimpleDateFormat("d MMMM", Locale("en")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = false
}