Blazescans(FuryManga): Rebrand (#4075)

* Rebrand

* Add isNsfw
This commit is contained in:
Chopper 2024-07-18 07:46:56 -03:00 committed by Draff
parent 3249f02716
commit b28987c34c
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 13 additions and 5 deletions

View File

@ -1,9 +1,10 @@
ext {
extName = 'Blazescans'
extClass = '.Blazescans'
extName = 'Fury Manga'
extClass = '.FuryManga'
themePkg = 'mangathemesia'
baseUrl = 'https://blazetoon.com'
overrideVersionCode = 1
baseUrl = 'https://furymanga.com'
overrideVersionCode = 2
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -4,7 +4,14 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.util.concurrent.TimeUnit
class Blazescans : MangaThemesia("Blazescans", "https://blazetoon.com", "en") {
class FuryManga : MangaThemesia(
"Fury Manga",
"https://furymanga.com",
"en",
"/comics",
) {
override val id = 3912200442923601567
override val client = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()