diff --git a/src/tr/patimanga/build.gradle b/src/tr/patimanga/build.gradle new file mode 100644 index 000000000..5bd2d5592 --- /dev/null +++ b/src/tr/patimanga/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Pati Manga' + extClass = '.PatiManga' + themePkg = 'mangathemesia' + baseUrl = 'https://www.patimanga.com' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/tr/patimanga/res/mipmap-hdpi/ic_launcher.png b/src/tr/patimanga/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..ab5330878 Binary files /dev/null and b/src/tr/patimanga/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/patimanga/res/mipmap-mdpi/ic_launcher.png b/src/tr/patimanga/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..47aebcd3e Binary files /dev/null and b/src/tr/patimanga/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/patimanga/res/mipmap-xhdpi/ic_launcher.png b/src/tr/patimanga/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..259c153b4 Binary files /dev/null and b/src/tr/patimanga/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/patimanga/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/patimanga/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..d18d75308 Binary files /dev/null and b/src/tr/patimanga/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/patimanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/patimanga/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..a77f67cc6 Binary files /dev/null and b/src/tr/patimanga/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/patimanga/src/eu/kanade/tachiyomi/extension/tr/patimanga/PatiManga.kt b/src/tr/patimanga/src/eu/kanade/tachiyomi/extension/tr/patimanga/PatiManga.kt new file mode 100644 index 000000000..c378139b5 --- /dev/null +++ b/src/tr/patimanga/src/eu/kanade/tachiyomi/extension/tr/patimanga/PatiManga.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.tr.patimanga + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class PatiManga : MangaThemesia( + "Pati Manga", + "https://www.patimanga.com", + "tr", + dateFormat = SimpleDateFormat("MMMM d, yyy", Locale("tr")), +)