Update some domains (#5574)

* Update domains

* Update more domains
This commit is contained in:
Chopper 2024-10-19 09:43:34 -03:00 committed by Draff
parent 421c4076d5
commit 1290a32547
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
19 changed files with 46 additions and 27 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'MangaSwat' extName = 'MangaSwat'
extClass = '.MangaSwat' extClass = '.MangaSwat'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://healteer.com' baseUrl = 'https://swatscans.com'
overrideVersionCode = 23 overrideVersionCode = 24
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -22,7 +22,7 @@ import java.util.Locale
class MangaSwat : class MangaSwat :
MangaThemesia( MangaThemesia(
"MangaSwat", "MangaSwat",
"https://healteer.com", "https://swatscans.com",
"ar", "ar",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("ar")), dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("ar")),
), ),

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Temple Scan' extName = 'Temple Scan'
extClass = '.TempleScan' extClass = '.TempleScan'
extVersionCode = 44 extVersionCode = 45
isNsfw = true isNsfw = true
} }

View File

@ -24,7 +24,7 @@ class TempleScan : HttpSource() {
override val lang = "en" override val lang = "en"
override val baseUrl = "https://templescan.net" override val baseUrl = "https://templetoons.com"
override val supportsLatest = true override val supportsLatest = true

View File

@ -2,8 +2,8 @@ ext {
extName = 'Varna Scan' extName = 'Varna Scan'
extClass = '.VarnaScan' extClass = '.VarnaScan'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://varnascan.net' baseUrl = 'https://varnascan.xyz'
overrideVersionCode = 1 overrideVersionCode = 2
isNsfw = false isNsfw = false
} }

View File

@ -4,6 +4,6 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
class VarnaScan : MangaThemesia( class VarnaScan : MangaThemesia(
"Varna Scan", "Varna Scan",
"https://varnascan.net", "https://varnascan.xyz",
"en", "en",
) )

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Olympus Scanlation' extName = 'Olympus Scanlation'
extClass = '.OlympusScanlation' extClass = '.OlympusScanlation'
extVersionCode = 9 extVersionCode = 10
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -24,8 +24,8 @@ class OlympusScanlation : HttpSource() {
override val versionId = 2 override val versionId = 2
override val baseUrl: String = "https://leerolymp.com" override val baseUrl: String = "https://zonaolympus.com"
private val apiBaseUrl: String = "https://dashboard.leerolymp.com" private val apiBaseUrl: String = "https://dashboard.zonaolympus.com"
override val lang: String = "es" override val lang: String = "es"
override val name: String = "Olympus Scanlation" override val name: String = "Olympus Scanlation"

View File

@ -2,8 +2,8 @@ ext {
extName = 'Mangasusu' extName = 'Mangasusu'
extClass = '.Mangasusu' extClass = '.Mangasusu'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://mangasusuku.xyz' baseUrl = 'https://mangasusuku.com'
overrideVersionCode = 4 overrideVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -12,7 +12,12 @@ import okhttp3.Response
import org.jsoup.nodes.Document import org.jsoup.nodes.Document
import java.io.IOException import java.io.IOException
class Mangasusu : MangaThemesia("Mangasusu", "https://mangasusuku.xyz", "id", "/komik") { class Mangasusu : MangaThemesia(
"Mangasusu",
"https://mangasusuku.com",
"id",
"/komik",
) {
override val client by lazy { override val client by lazy {
super.client.newBuilder().addInterceptor(::sucuriInterceptor).build() super.client.newBuilder().addInterceptor(::sucuriInterceptor).build()
} }

View File

@ -2,8 +2,8 @@ ext {
extName = 'MangaTilkisi' extName = 'MangaTilkisi'
extClass = '.MangaTilkisi' extClass = '.MangaTilkisi'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://www.mangatilkisi.com' baseUrl = 'https://www.manga-tilkisi.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false isNsfw = false
} }

View File

@ -1,12 +1,25 @@
package eu.kanade.tachiyomi.extension.tr.mangatilkisi package eu.kanade.tachiyomi.extension.tr.mangatilkisi
import eu.kanade.tachiyomi.multisrc.madara.Madara import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.POST
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.FormBody
import okhttp3.Request
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
class MangaTilkisi : Madara( class MangaTilkisi : Madara(
"MangaTilkisi", "MangaTilkisi",
"https://www.mangatilkisi.com", "https://www.manga-tilkisi.com",
"tr", "tr",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("tr")), dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("tr")),
) ) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override fun pageListRequest(chapter: SChapter): Request {
val payload = FormBody.Builder()
.add("verified", "1")
.build()
return POST(chapter.url, headers, payload)
}
}

View File

@ -2,8 +2,8 @@ ext {
extName = 'Türkçe Manga Oku' extName = 'Türkçe Manga Oku'
extClass = '.TurkceMangaOku' extClass = '.TurkceMangaOku'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://turkcemangaoku.com' baseUrl = 'https://trmangaoku.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false isNsfw = false
} }

View File

@ -6,12 +6,13 @@ import java.util.Locale
class TurkceMangaOku : Madara( class TurkceMangaOku : Madara(
"Türkçe Manga Oku", "Türkçe Manga Oku",
"https://turkcemangaoku.com", "https://trmangaoku.com",
"tr", "tr",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")), dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) { ) {
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Durumu) + div.summary-content" override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Durumu) + div.summary-content"
override val useLoadMoreRequest = LoadMoreStrategy.Never override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true override val useNewChapterEndpoint = true
} }

View File

@ -1,7 +1,7 @@
ext { ext {
extName = "Dua Leo Truyen" extName = "Dua Leo Truyen"
extClass = ".DuaLeoTruyen" extClass = ".DuaLeoTruyen"
extVersionCode = 5 extVersionCode = 6
isNsfw = true isNsfw = true
} }

View File

@ -22,7 +22,7 @@ class DuaLeoTruyen : ParsedHttpSource() {
override val name = "Dưa Leo Truyện" override val name = "Dưa Leo Truyện"
override val baseUrl = "https://dualeotruyenceo.com" override val baseUrl = "https://dualeotruyenman.com"
override val lang = "vi" override val lang = "vi"

View File

@ -12,7 +12,7 @@
<category android:name="android.intent.category.BROWSABLE"/> <category android:name="android.intent.category.BROWSABLE"/>
<data <data
android:host="truyenhentai18.net" android:host="truyenhentai18.pro"
android:pathPattern="/..*\\.html" android:pathPattern="/..*\\.html"
android:scheme="https"/> android:scheme="https"/>
</intent-filter> </intent-filter>

View File

@ -1,7 +1,7 @@
ext { ext {
extName = "Truyen Hentai 18+" extName = "Truyen Hentai 18+"
extClass = ".TruyenHentai18" extClass = ".TruyenHentai18"
extVersionCode = 2 extVersionCode = 3
isNsfw = true isNsfw = true
} }

View File

@ -18,7 +18,7 @@ class TruyenHentai18 : ParsedHttpSource() {
override val name = "Truyện Hentai 18+" override val name = "Truyện Hentai 18+"
override val baseUrl = "https://truyenhentai18.org" override val baseUrl = "https://truyenhentai18.pro"
override val lang = "vi" override val lang = "vi"