Skip to content

Commit

Permalink
Update domain Gri Melek/Taikutsu (#6936)
Browse files Browse the repository at this point in the history
* Taikutsu: update domain

* Gri Melek: update domain
  • Loading branch information
vetleledaal authored Jan 3, 2025
1 parent a2a2775 commit 07491d2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 23 deletions.
4 changes: 2 additions & 2 deletions src/es/taikutsu/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ext {
extName = 'Taikutsu'
extClass = '.Taikutsu'
themePkg = 'lectormoe'
baseUrl = 'https://taikutsutl.lector.moe'
overrideVersionCode = 0
baseUrl = 'https://taikutsutl.capibaratraductor.com'
overrideVersionCode = 1
isNsfw = false
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import eu.kanade.tachiyomi.multisrc.lectormoe.LectorMoe

class Taikutsu : LectorMoe(
"Taikutsu",
"https://taikutsutl.lector.moe",
"https://taikutsutl.capibaratraductor.com",
"es",
)
4 changes: 2 additions & 2 deletions src/tr/siyahmelek/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ext {
extName = 'Gri Melek'
extClass = '.Siyahmelek'
themePkg = 'madara'
baseUrl = 'https://grimelek.dev'
overrideVersionCode = 10
baseUrl = 'https://grimelek.love'
overrideVersionCode = 11
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
package eu.kanade.tachiyomi.extension.tr.siyahmelek

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.util.Locale

class Siyahmelek : Madara(
"Gri Melek",
"https://grimelek.dev",
"https://grimelek.love",
"tr",
SimpleDateFormat("dd MMM yyyy", Locale("tr")),
) {
Expand All @@ -26,18 +23,4 @@ class Siyahmelek : Madara(
// OK: <div 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 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)
}
}

0 comments on commit 07491d2

Please sign in to comment.