Add SkyManga (#5307)
This commit is contained in:
parent
2e672c3c45
commit
9fe318655e
10
src/en/skymanga/build.gradle
Normal file
10
src/en/skymanga/build.gradle
Normal 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"
|
BIN
src/en/skymanga/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/skymanga/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
BIN
src/en/skymanga/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/skymanga/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
src/en/skymanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/skymanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
BIN
src/en/skymanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/skymanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
src/en/skymanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/skymanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
@ -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()
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user