Add Truyen tranh dam my (#2946)

This commit is contained in:
Vetle Ledaal 2024-05-10 15:15:21 +00:00 committed by GitHub
parent 034499ee73
commit 29d210f64d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Truyen tranh dam my'
extClass = '.TruyenTranhDamMy'
themePkg = 'madara'
baseUrl = 'https://truyentranhdammyy.top'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -0,0 +1,37 @@
package eu.kanade.tachiyomi.extension.vi.truyentranhdammy
import android.annotation.SuppressLint
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.DateFormatSymbols
import java.text.SimpleDateFormat
import java.util.Locale
@SuppressLint("SimpleDateFormat")
class TruyenTranhDamMy : Madara(
"Truyện tranh đam mỹ",
"https://truyentranhdammyy.top",
"vi",
dateFormat = SimpleDateFormat(
"MMMM d, yyyy",
DateFormatSymbols(Locale("vi")).apply {
// Month One, Month Two, ...
months = arrayOf(
"Tháng Một",
"Tháng Hai",
"Tháng Ba",
"Tháng Tư",
"Tháng Năm",
"Tháng Sáu",
"Tháng Bảy",
"Tháng Tám",
"Tháng Chín",
"Tháng Mười",
"Tháng Mười Một",
"Tháng Mười Hai",
)
},
),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
}