-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
15 changes: 15 additions & 0 deletions
15
src/en/manhwafreake/src/eu/kanade/tachiyomi/extension/en/manhwafreake/ManhwaFreake.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
} |