-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e3e82f
commit 7a8cff7
Showing
7 changed files
with
31 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 = 'NvManga' | ||
extClass = '.NvManga' | ||
themePkg = 'madara' | ||
baseUrl = 'https://nvmanga.com' | ||
overrideVersionCode = 0 | ||
isNsfw = false | ||
} | ||
|
||
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.
21 changes: 21 additions & 0 deletions
21
src/en/nvmanga/src/eu/kanade/tachiyomi/extension/en/nvmanga/NvManga.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,21 @@ | ||
package eu.kanade.tachiyomi.extension.en.nvmanga | ||
|
||
import eu.kanade.tachiyomi.multisrc.madara.Madara | ||
import java.text.SimpleDateFormat | ||
import java.util.Locale | ||
|
||
class NvManga : Madara( | ||
"NvManga", | ||
"https://nvmanga.com", | ||
"en", | ||
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT), | ||
) { | ||
override val seriesTypeSelector = ".post-content_item:contains(Origination) .summary-content" | ||
|
||
override val useLoadMoreRequest = LoadMoreStrategy.AutoDetect | ||
override val useNewChapterEndpoint = false | ||
|
||
override val mangaSubString = "webtoon" | ||
|
||
override val fetchGenres = false | ||
} |