Add SkyManga (#5307)

This commit is contained in:
Chopper 2024-09-30 10:05:55 -03:00 committed by Draff
parent 2e672c3c45
commit 9fe318655e
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Sky Manga'
extClass = '.SkyManga'
themePkg = 'mangathemesia'
baseUrl = 'https://skymanga.work'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.skymanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class SkyManga : MangaThemesia(
"Sky Manga",
"https://skymanga.work",
"en",
"/manga-list",
SimpleDateFormat("dd-MM-yyyy", Locale.US),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}