diff --git a/src/tr/mangakoleji/build.gradle b/src/tr/mangakoleji/build.gradle new file mode 100644 index 000000000..d293f0d8e --- /dev/null +++ b/src/tr/mangakoleji/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Manga Koleji' + extClass = '.MangaKoleji' + themePkg = 'mangathemesia' + baseUrl = 'https://mangakoleji.com' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/tr/mangakoleji/res/mipmap-hdpi/ic_launcher.png b/src/tr/mangakoleji/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..30d0f4fdd Binary files /dev/null and b/src/tr/mangakoleji/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/mangakoleji/res/mipmap-mdpi/ic_launcher.png b/src/tr/mangakoleji/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..84db6af48 Binary files /dev/null and b/src/tr/mangakoleji/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/mangakoleji/res/mipmap-xhdpi/ic_launcher.png b/src/tr/mangakoleji/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..a83db4592 Binary files /dev/null and b/src/tr/mangakoleji/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/mangakoleji/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/mangakoleji/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..67f041ecb Binary files /dev/null and b/src/tr/mangakoleji/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/mangakoleji/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/mangakoleji/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..37558983d Binary files /dev/null and b/src/tr/mangakoleji/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/mangakoleji/src/eu/kanade/tachiyomi/extension/tr/mangakoleji/MangaKoleji.kt b/src/tr/mangakoleji/src/eu/kanade/tachiyomi/extension/tr/mangakoleji/MangaKoleji.kt new file mode 100644 index 000000000..475667d36 --- /dev/null +++ b/src/tr/mangakoleji/src/eu/kanade/tachiyomi/extension/tr/mangakoleji/MangaKoleji.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.tr.mangakoleji + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class MangaKoleji : MangaThemesia( + "Manga Koleji", + "https://mangakoleji.com", + "tr", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("tr")), +)