Add source GMANGA (unoriginal) "ar" (#2069)

This commit is contained in:
mohamedotaku 2024-03-24 04:30:25 +00:00 committed by GitHub
parent 5ea18ed7de
commit decd51de5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'GMANGA (unoriginal)'
extClass = '.GmangaSite'
themePkg = 'madara'
baseUrl = 'https://gmanga.site'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.ar.gmangasite
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GmangaSite : Madara(
"GMANGA (unoriginal)",
"https://gmanga.site",
"ar",
dateFormat = SimpleDateFormat("MMMM dd، yyyy", Locale("ar")),
) {
override val chapterUrlSuffix = ""
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}