diff --git a/src/tr/ghostfansub/build.gradle b/src/tr/ghostfansub/build.gradle new file mode 100644 index 000000000..fc9a38d70 --- /dev/null +++ b/src/tr/ghostfansub/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Ghost Fansub' + extClass = '.GhostFansub' + themePkg = 'madara' + baseUrl = 'https://ghostfansub.co' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/tr/ghostfansub/res/mipmap-hdpi/ic_launcher.png b/src/tr/ghostfansub/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..68de531af Binary files /dev/null and b/src/tr/ghostfansub/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/ghostfansub/res/mipmap-mdpi/ic_launcher.png b/src/tr/ghostfansub/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..2dee11c08 Binary files /dev/null and b/src/tr/ghostfansub/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/ghostfansub/res/mipmap-xhdpi/ic_launcher.png b/src/tr/ghostfansub/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..c1e75c315 Binary files /dev/null and b/src/tr/ghostfansub/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/ghostfansub/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/ghostfansub/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..ae359870c Binary files /dev/null and b/src/tr/ghostfansub/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/ghostfansub/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/ghostfansub/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..5b085fd94 Binary files /dev/null and b/src/tr/ghostfansub/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/ghostfansub/src/eu/kanade/tachiyomi/extension/tr/ghostfansub/GhostFansub.kt b/src/tr/ghostfansub/src/eu/kanade/tachiyomi/extension/tr/ghostfansub/GhostFansub.kt new file mode 100644 index 000000000..38097a373 --- /dev/null +++ b/src/tr/ghostfansub/src/eu/kanade/tachiyomi/extension/tr/ghostfansub/GhostFansub.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.tr.ghostfansub + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class GhostFansub : Madara( + "Ghost Fansub", + "https://ghostfansub.co", + "tr", + dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("tr")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Always + override val useNewChapterEndpoint = true +}