-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added MangaRuhu extension for Turkish manga source. (#5830)
* Add: MangaRuhu extension * res updated * Update build.gradle * Update MangaRuhu.kt --------- Co-authored-by: Forza <[email protected]>
- Loading branch information
Showing
7 changed files
with
23 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,9 @@ | ||
ext { | ||
extName = 'Manga Ruhu' | ||
extClass = '.MangaRuhu' | ||
themePkg = 'madara' | ||
baseUrl = 'https://mangaruhu.com' | ||
overrideVersionCode = 0 | ||
} | ||
|
||
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.
14 changes: 14 additions & 0 deletions
14
src/tr/mangaruhu/src/eu/kanade/tachiyomi/extension/tr/mangaruhu/MangaRuhu.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,14 @@ | ||
package eu.kanade.tachiyomi.extension.tr.mangaruhu | ||
|
||
import eu.kanade.tachiyomi.multisrc.madara.Madara | ||
import java.text.SimpleDateFormat | ||
import java.util.Locale | ||
|
||
class MangaRuhu : Madara( | ||
"Manga Ruhu", | ||
"https://mangaruhu.com", | ||
"tr", | ||
SimpleDateFormat("d MMMM yyyy", Locale("tr")), | ||
) { | ||
override val filterNonMangaItems = false | ||
} |