Add Zinmanga.net (#2934)

This commit is contained in:
Vetle Ledaal 2024-05-10 15:08:56 +00:00 committed by GitHub
parent f93bd925bb
commit 6313beab77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 27 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.en.zinmanganet
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ZinmangaNet : Madara(
"Zinmanga.net",
"https://zinmanga.net",
"en",
dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val filterNonMangaItems = false
}