Skip to content

Commit

Permalink
Add SiteManga (#6799)
Browse files Browse the repository at this point in the history
  • Loading branch information
choppeh authored Dec 24, 2024
1 parent 4aab5e4 commit c18cfc9
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/en/sitemanga/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
ext {
extName = 'Site Manga'
extClass = '.SiteManga'
themePkg = 'madara'
baseUrl = 'https://sitemanga.com'
overrideVersionCode = 0
isNsfw = true
}

apply from: "$rootDir/common.gradle"

dependencies {
implementation project(':lib:randomua')
}
Binary file added src/en/sitemanga/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/sitemanga/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/sitemanga/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.
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,18 @@
package eu.kanade.tachiyomi.extension.en.sitemanga

import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale

class SiteManga : Madara(
"Site Manga",
"https://sitemanga.com",
"en",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.US),
) {
override val useNewChapterEndpoint = true

override val useLoadMoreRequest = LoadMoreStrategy.Always

override val filterNonMangaItems = false
}

0 comments on commit c18cfc9

Please sign in to comment.