Add SiteManga (#6799)

This commit is contained in:
Chopper 2024-12-24 20:54:04 -03:00 committed by Draff
parent 5723bb392d
commit b0250b98f7
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions

View File

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

View File

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