ReadTokyoGhoulRe&TokyoGhoulMangaOnline: Bump baseUrl & include extra series (#7108)

* ReadTokyoGhoul: Bump versionCode

* ReadTokyoGhoul: Bump baseUrl

* ReadTokyoGhoul: Add Choujin X
This commit is contained in:
Smol Ame 2025-01-10 15:46:53 -08:00 committed by Draff
parent bdadddf27c
commit 007b3f32bc
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online' extName = 'Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online'
extClass = '.ReadTokyoGhoulReTokyoGhoulMangaOnline' extClass = '.ReadTokyoGhoulReTokyoGhoulMangaOnline'
themePkg = 'mangacatalog' themePkg = 'mangacatalog'
baseUrl = 'https://ww8.tokyoghoulre.com' baseUrl = 'https://ww10.tokyoghoulre.com'
overrideVersionCode = 1 overrideVersionCode = 2
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -2,7 +2,7 @@ package eu.kanade.tachiyomi.extension.en.readtokyoghoulretokyoghoulmangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog 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( override val sourceList = listOf(
Pair("Tokyo Ghoul", "$baseUrl/manga/tokyo-ghoul/"), Pair("Tokyo Ghoul", "$baseUrl/manga/tokyo-ghoul/"),
Pair("Tokyo Ghoul:re", "$baseUrl/manga/tokyo-ghoulre/"), 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("Gorilla", "$baseUrl/manga/this-gorilla-will-die-in-1-day/"),
Pair("ArtBook", "$baseUrl/manga/tokyo-ghoul-zakki/"), Pair("ArtBook", "$baseUrl/manga/tokyo-ghoul-zakki/"),
Pair("TG Light Novel", "$baseUrl/manga/tokyo-ghoul-re-light-novels/"), Pair("TG Light Novel", "$baseUrl/manga/tokyo-ghoul-re-light-novels/"),
Pair("Choujin X", "$baseUrl/manga/choujin-x/"),
).sortedBy { it.first }.distinctBy { it.second } ).sortedBy { it.first }.distinctBy { it.second }
} }