Skip to content

Commit

Permalink
Add NvManga (#2901)
Browse files Browse the repository at this point in the history
  • Loading branch information
vetleledaal authored and cuong-tran committed May 9, 2024
1 parent 8e3e82f commit 7a8cff7
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/en/nvmanga/build.gradle
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"
Binary file added src/en/nvmanga/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/en/nvmanga/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/en/nvmanga/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/en/nvmanga/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/en/nvmanga/res/mipmap-xxxhdpi/ic_launcher.png
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,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
}

0 comments on commit 7a8cff7

Please sign in to comment.