mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 02:12:42 +01:00
Add MangaTX (#6041)
This commit is contained in:
parent
e55bf09659
commit
9f64625684
10
src/en/mangatx/build.gradle
Normal file
10
src/en/mangatx/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'MangaTX'
|
||||
extClass = '.MangaTX'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://mangatx.cc'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/en/mangatx/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/mangatx/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
BIN
src/en/mangatx/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/mangatx/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
src/en/mangatx/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/mangatx/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
src/en/mangatx/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/mangatx/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
src/en/mangatx/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/mangatx/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,20 @@
|
||||
package eu.kanade.tachiyomi.extension.en.mangatx
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class MangaTX : MangaThemesia(
|
||||
"MangaTX",
|
||||
"https://mangatx.cc",
|
||||
"en",
|
||||
mangaUrlDirectory = "/manga-list",
|
||||
dateFormat = SimpleDateFormat("dd-MM-yyyy", Locale.ROOT),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val seriesAuthorSelector = ".imptdt:contains(Author) a"
|
||||
}
|
Loading…
Reference in New Issue
Block a user