Manga Time: update domain (#2774)

This commit is contained in:
Vetle Ledaal 2024-05-03 10:33:48 +00:00 committed by Draff
parent 01e2f9db9f
commit 50ef399d3a
2 changed files with 5 additions and 3 deletions

View File

@ -2,8 +2,9 @@ ext {
extName = 'Manga Time' extName = 'Manga Time'
extClass = '.MangaTime' extClass = '.MangaTime'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://anime-time.net' baseUrl = 'https://mangatime.us'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -6,9 +6,10 @@ import java.util.Locale
class MangaTime : Madara( class MangaTime : Madara(
"Manga Time", "Manga Time",
"https://anime-time.net", "https://mangatime.us",
"ar", "ar",
dateFormat = SimpleDateFormat("dd MMMM، yyyy", Locale("ar")), dateFormat = SimpleDateFormat("dd MMMM، yyyy", Locale("ar")),
) { ) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true override val useNewChapterEndpoint = true
} }