Skip to content

Commit

Permalink
Add ManhwaFreake (#5545)
Browse files Browse the repository at this point in the history
* Add ManhwaFreake

* Add isNsfw
  • Loading branch information
choppeh authored and cuong-tran committed Oct 16, 2024
1 parent a2297b7 commit e6a1ddd
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/en/manhwafreake/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -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()
}

0 comments on commit e6a1ddd

Please sign in to comment.