Update domain Gri Melek/Taikutsu (#6936)

* Taikutsu: update domain

* Gri Melek: update domain
This commit is contained in:
Vetle Ledaal 2025-01-03 08:48:23 +01:00 committed by Draff
parent 0c56c453f5
commit 299d0f1ad8
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
4 changed files with 6 additions and 23 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'Taikutsu' extName = 'Taikutsu'
extClass = '.Taikutsu' extClass = '.Taikutsu'
themePkg = 'lectormoe' themePkg = 'lectormoe'
baseUrl = 'https://taikutsutl.lector.moe' baseUrl = 'https://taikutsutl.capibaratraductor.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false isNsfw = false
} }

View File

@ -4,6 +4,6 @@ import eu.kanade.tachiyomi.multisrc.lectormoe.LectorMoe
class Taikutsu : LectorMoe( class Taikutsu : LectorMoe(
"Taikutsu", "Taikutsu",
"https://taikutsutl.lector.moe", "https://taikutsutl.capibaratraductor.com",
"es", "es",
) )

View File

@ -2,8 +2,8 @@ ext {
extName = 'Gri Melek' extName = 'Gri Melek'
extClass = '.Siyahmelek' extClass = '.Siyahmelek'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://grimelek.dev' baseUrl = 'https://grimelek.love'
overrideVersionCode = 10 overrideVersionCode = 11
isNsfw = true isNsfw = true
} }

View File

@ -1,15 +1,12 @@
package eu.kanade.tachiyomi.extension.tr.siyahmelek package eu.kanade.tachiyomi.extension.tr.siyahmelek
import eu.kanade.tachiyomi.multisrc.madara.Madara import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.SChapter
import eu.kanade.tachiyomi.source.model.SManga
import okhttp3.Response
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
class Siyahmelek : Madara( class Siyahmelek : Madara(
"Gri Melek", "Gri Melek",
"https://grimelek.dev", "https://grimelek.love",
"tr", "tr",
SimpleDateFormat("dd MMM yyyy", Locale("tr")), SimpleDateFormat("dd MMM yyyy", Locale("tr")),
) { ) {
@ -26,18 +23,4 @@ class Siyahmelek : Madara(
// OK: <div class="page-break no-gaps"> // OK: <div class="page-break no-gaps">
// NG: <div style="display:none" class="page-break no-gaps"> // NG: <div style="display:none" class="page-break no-gaps">
override val pageListParseSelector = "div.page-break:not([style*=\"display:\"])" override val pageListParseSelector = "div.page-break:not([style*=\"display:\"])"
override fun mangaDetailsParse(response: Response): SManga {
if (response.request.url.encodedPath == "/giris-yapiniz/") {
throw Exception("WebView'de oturum açarak erişin")
}
return super.mangaDetailsParse(response)
}
override fun chapterListParse(response: Response): List<SChapter> {
if (response.request.url.encodedPath == "/giris-yapiniz/") {
throw Exception("WebView'de oturum açarak erişin")
}
return super.chapterListParse(response)
}
} }