Add `www` subdomain for redirecting domains (#7770)
* DeviantArt - fix domain * Kuroi Manga - fix domain * Lelmanga - fix domain * Mangamo - fix domain * Manhua Zonghe - fix domain
This commit is contained in:
parent
d4c94d0972
commit
2cfdda0bcf
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'DeviantArt'
|
||||
extClass = '.DeviantArt'
|
||||
extVersionCode = 5
|
||||
extVersionCode = 6
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import java.util.Locale
|
|||
|
||||
class DeviantArt : HttpSource(), ConfigurableSource {
|
||||
override val name = "DeviantArt"
|
||||
override val baseUrl = "https://deviantart.com"
|
||||
override val baseUrl = "https://www.deviantart.com"
|
||||
override val lang = "all"
|
||||
override val supportsLatest = false
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'Mangamo'
|
||||
extClass = '.Mangamo'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ class Mangamo : ConfigurableSource, HttpSource() {
|
|||
|
||||
override val lang = "en"
|
||||
|
||||
override val baseUrl = "https://mangamo.com"
|
||||
override val baseUrl = "https://www.mangamo.com"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ ext {
|
|||
extName = 'Manhua Zonghe'
|
||||
extClass = '.ManhuaZonghe'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://manhuazonghe.com'
|
||||
overrideVersionCode = 0
|
||||
baseUrl = 'https://www.manhuazonghe.com'
|
||||
overrideVersionCode = 1
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ package eu.kanade.tachiyomi.extension.en.manhuazonghe
|
|||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
|
||||
class ManhuaZonghe : Madara("Manhua Zonghe", "https://manhuazonghe.com", "en") {
|
||||
class ManhuaZonghe : Madara("Manhua Zonghe", "https://www.manhuazonghe.com", "en") {
|
||||
override val useNewChapterEndpoint = false
|
||||
override val filterNonMangaItems = false
|
||||
override val mangaSubString = "manhua"
|
||||
|
|
|
@ -3,7 +3,8 @@ ext {
|
|||
extClass = '.Lelmanga'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://www.lelmanga.com'
|
||||
overrideVersionCode = 0
|
||||
overrideVersionCode = 1
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -4,7 +4,7 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
|||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class Lelmanga : MangaThemesia("Lelmanga", "https://lelmanga.com", "fr", dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH)) {
|
||||
class Lelmanga : MangaThemesia("Lelmanga", "https://www.lelmanga.com", "fr", dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH)) {
|
||||
override val altNamePrefix = "Nom alternatif: "
|
||||
override val seriesAuthorSelector = ".imptdt:contains(Auteur) i"
|
||||
override val seriesArtistSelector = ".imptdt:contains(Artiste) i"
|
||||
|
|
|
@ -2,8 +2,8 @@ ext {
|
|||
extName = 'Kuroi Manga'
|
||||
extClass = '.KuroiManga'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://kuroimanga.com'
|
||||
overrideVersionCode = 1
|
||||
baseUrl = 'https://www.kuroimanga.com'
|
||||
overrideVersionCode = 2
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import java.util.Locale
|
|||
|
||||
class KuroiManga : Madara(
|
||||
"Kuroi Manga",
|
||||
"https://kuroimanga.com",
|
||||
"https://www.kuroimanga.com",
|
||||
"tr",
|
||||
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
|
||||
) {
|
||||
|
|
Loading…
Reference in New Issue