Add ManhwaFreake (#5545)

* Add ManhwaFreake

* Add isNsfw
This commit is contained in:
Chopper 2024-10-16 02:54:41 -03:00 committed by GitHub
parent 75c5d1b15e
commit ee39cad6be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manhwa Freake'
extClass = '.ManhwaFreake'
themePkg = 'mangathemesia'
baseUrl = 'https://manhwafreake.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.manhwafreake
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class ManhwaFreake : MangaThemesia(
"Manhwa Freake",
"https://manhwafreake.com",
"en",
mangaUrlDirectory = "/series",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}