Add `www` subdomain for redirecting domains (#7770)
CI / Prepare job (push) Successful in 4s Details
CI / Build individual modules (push) Failing after 11s Details
CI / Publish repo (push) Has been skipped Details

* DeviantArt - fix domain

* Kuroi Manga - fix domain

* Lelmanga - fix domain

* Mangamo - fix domain

* Manhua Zonghe - fix domain
This commit is contained in:
Vetle Ledaal 2025-02-23 14:36:59 +01:00 committed by Draff
parent d4c94d0972
commit 2cfdda0bcf
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
10 changed files with 13 additions and 12 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'DeviantArt' extName = 'DeviantArt'
extClass = '.DeviantArt' extClass = '.DeviantArt'
extVersionCode = 5 extVersionCode = 6
isNsfw = true isNsfw = true
} }

View File

@ -28,7 +28,7 @@ import java.util.Locale
class DeviantArt : HttpSource(), ConfigurableSource { class DeviantArt : HttpSource(), ConfigurableSource {
override val name = "DeviantArt" override val name = "DeviantArt"
override val baseUrl = "https://deviantart.com" override val baseUrl = "https://www.deviantart.com"
override val lang = "all" override val lang = "all"
override val supportsLatest = false override val supportsLatest = false

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Mangamo' extName = 'Mangamo'
extClass = '.Mangamo' extClass = '.Mangamo'
extVersionCode = 1 extVersionCode = 2
isNsfw = false isNsfw = false
} }

View File

@ -39,7 +39,7 @@ class Mangamo : ConfigurableSource, HttpSource() {
override val lang = "en" override val lang = "en"
override val baseUrl = "https://mangamo.com" override val baseUrl = "https://www.mangamo.com"
override val supportsLatest = true override val supportsLatest = true

View File

@ -2,8 +2,8 @@ ext {
extName = 'Manhua Zonghe' extName = 'Manhua Zonghe'
extClass = '.ManhuaZonghe' extClass = '.ManhuaZonghe'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://manhuazonghe.com' baseUrl = 'https://www.manhuazonghe.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = true isNsfw = true
} }

View File

@ -2,7 +2,7 @@ package eu.kanade.tachiyomi.extension.en.manhuazonghe
import eu.kanade.tachiyomi.multisrc.madara.Madara 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 useNewChapterEndpoint = false
override val filterNonMangaItems = false override val filterNonMangaItems = false
override val mangaSubString = "manhua" override val mangaSubString = "manhua"

View File

@ -3,7 +3,8 @@ ext {
extClass = '.Lelmanga' extClass = '.Lelmanga'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://www.lelmanga.com' baseUrl = 'https://www.lelmanga.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -4,7 +4,7 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Locale 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 altNamePrefix = "Nom alternatif: "
override val seriesAuthorSelector = ".imptdt:contains(Auteur) i" override val seriesAuthorSelector = ".imptdt:contains(Auteur) i"
override val seriesArtistSelector = ".imptdt:contains(Artiste) i" override val seriesArtistSelector = ".imptdt:contains(Artiste) i"

View File

@ -2,8 +2,8 @@ ext {
extName = 'Kuroi Manga' extName = 'Kuroi Manga'
extClass = '.KuroiManga' extClass = '.KuroiManga'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://kuroimanga.com' baseUrl = 'https://www.kuroimanga.com'
overrideVersionCode = 1 overrideVersionCode = 2
isNsfw = true isNsfw = true
} }

View File

@ -10,7 +10,7 @@ import java.util.Locale
class KuroiManga : Madara( class KuroiManga : Madara(
"Kuroi Manga", "Kuroi Manga",
"https://kuroimanga.com", "https://www.kuroimanga.com",
"tr", "tr",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")), dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) { ) {