Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ReadChainsawManMangaOnline extension #6665

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/en/readchainsawmanmangaonline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ ext {
extName = 'Read Chainsaw Man Manga Online'
extClass = '.ReadChainsawManMangaOnline'
themePkg = 'mangacatalog'
baseUrl = 'https://ww1.readchainsawman.com'
overrideVersionCode = 0
baseUrl = 'https://ww4.readchainsawman.com/'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't add trailing slash

overrideVersionCode = 1
isNsfw = true
}

apply from: "$rootDir/common.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,22 @@ package eu.kanade.tachiyomi.extension.en.readchainsawmanmangaonline

import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog

class ReadChainsawManMangaOnline : MangaCatalog("Read Chainsaw Man Manga Online", "https://ww1.readchainsawman.com", "en") {
class ReadChainsawManMangaOnline : MangaCatalog("Read Chainsaw Man Manga Online", "https://ww4.readchainsawman.com", "en") {
override val sourceList = listOf(
// Chainsaw Man
Pair("Chainsaw Man", "$baseUrl/manga/chainsaw-man/"),
Pair("Chainsaw Man Colored", "$baseUrl/manga/chainsaw-man-colored/"),
Pair("Chainsaw Man: Buddy Stories", "$baseUrl/manga/chainsaw-man-buddy-stories/"),

// Other titles
Pair("Fire Punch", "$baseUrl/manga/fire-punch/"),
Pair("Nayuta", "$baseUrl/manga/yogen-no-nayuta/"),
Pair("Colored", "$baseUrl/manga/chainsaw-man-colored/"),
Pair("Yogen no Nayuta", "$baseUrl/manga/yogen-no-nayuta/"),
Pair("Look Back", "$baseUrl/manga/look-back/"),
Pair("Just Listen to the Song", "$baseUrl/manga/futsuu-ni-kiite-kure/"),
Pair("Sayonara Eri (Goodbye, Eri)", "$baseUrl/manga/sayonara-eri-goodbye-eri/"),

// Storybooks
Pair("Tatsuki Fujimoto Before Chainsaw Man: 17-21", "$baseUrl/manga/17-21-fujimoto-tatsuki-tanpenshuu/"),
Pair("Tatsuki Fujimoto Before Chainsaw Man: 22-26", "$baseUrl/manga/22-26-fujimoto-tatsuki-tanpenshuu/"),
).sortedBy { it.first }.distinctBy { it.second }
}
Loading