diff --git a/src/en/readtokyoghoulretokyoghoulmangaonline/build.gradle b/src/en/readtokyoghoulretokyoghoulmangaonline/build.gradle index c2c6292c0..90ca2abec 100644 --- a/src/en/readtokyoghoulretokyoghoulmangaonline/build.gradle +++ b/src/en/readtokyoghoulretokyoghoulmangaonline/build.gradle @@ -2,8 +2,8 @@ ext { extName = 'Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online' extClass = '.ReadTokyoGhoulReTokyoGhoulMangaOnline' themePkg = 'mangacatalog' - baseUrl = 'https://ww8.tokyoghoulre.com' - overrideVersionCode = 1 + baseUrl = 'https://ww10.tokyoghoulre.com' + overrideVersionCode = 2 } apply from: "$rootDir/common.gradle" diff --git a/src/en/readtokyoghoulretokyoghoulmangaonline/src/eu/kanade/tachiyomi/extension/en/readtokyoghoulretokyoghoulmangaonline/ReadTokyoGhoulReTokyoGhoulMangaOnline.kt b/src/en/readtokyoghoulretokyoghoulmangaonline/src/eu/kanade/tachiyomi/extension/en/readtokyoghoulretokyoghoulmangaonline/ReadTokyoGhoulReTokyoGhoulMangaOnline.kt index 47ab4e0a7..036faf201 100644 --- a/src/en/readtokyoghoulretokyoghoulmangaonline/src/eu/kanade/tachiyomi/extension/en/readtokyoghoulretokyoghoulmangaonline/ReadTokyoGhoulReTokyoGhoulMangaOnline.kt +++ b/src/en/readtokyoghoulretokyoghoulmangaonline/src/eu/kanade/tachiyomi/extension/en/readtokyoghoulretokyoghoulmangaonline/ReadTokyoGhoulReTokyoGhoulMangaOnline.kt @@ -2,7 +2,7 @@ package eu.kanade.tachiyomi.extension.en.readtokyoghoulretokyoghoulmangaonline import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog -class ReadTokyoGhoulReTokyoGhoulMangaOnline : MangaCatalog("Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online", "https://ww8.tokyoghoulre.com", "en") { +class ReadTokyoGhoulReTokyoGhoulMangaOnline : MangaCatalog("Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online", "https://ww10.tokyoghoulre.com", "en") { override val sourceList = listOf( Pair("Tokyo Ghoul", "$baseUrl/manga/tokyo-ghoul/"), Pair("Tokyo Ghoul:re", "$baseUrl/manga/tokyo-ghoulre/"), @@ -11,5 +11,6 @@ class ReadTokyoGhoulReTokyoGhoulMangaOnline : MangaCatalog("Read Tokyo Ghoul Re Pair("Gorilla", "$baseUrl/manga/this-gorilla-will-die-in-1-day/"), Pair("ArtBook", "$baseUrl/manga/tokyo-ghoul-zakki/"), Pair("TG Light Novel", "$baseUrl/manga/tokyo-ghoul-re-light-novels/"), + Pair("Choujin X", "$baseUrl/manga/choujin-x/"), ).sortedBy { it.first }.distinctBy { it.second } }