diff --git a/src/th/popsmanga/build.gradle b/src/th/popsmanga/build.gradle new file mode 100644 index 000000000..67f3b2d0a --- /dev/null +++ b/src/th/popsmanga/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'PopsManga' + extClass = '.PopsManga' + themePkg = 'mangathemesia' + baseUrl = 'https://www.popsmanga.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/popsmanga/res/mipmap-hdpi/ic_launcher.png b/src/th/popsmanga/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..dafc90c47 Binary files /dev/null and b/src/th/popsmanga/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/popsmanga/res/mipmap-mdpi/ic_launcher.png b/src/th/popsmanga/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..bd6c99aa9 Binary files /dev/null and b/src/th/popsmanga/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/popsmanga/res/mipmap-xhdpi/ic_launcher.png b/src/th/popsmanga/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..14a568e2c Binary files /dev/null and b/src/th/popsmanga/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/popsmanga/res/mipmap-xxhdpi/ic_launcher.png b/src/th/popsmanga/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..790c68cdc Binary files /dev/null and b/src/th/popsmanga/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/popsmanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/popsmanga/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b48e8013a Binary files /dev/null and b/src/th/popsmanga/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/popsmanga/src/eu/kanade/tachiyomi/extension/th/popsmanga/PopsManga.kt b/src/th/popsmanga/src/eu/kanade/tachiyomi/extension/th/popsmanga/PopsManga.kt new file mode 100644 index 000000000..5319804c7 --- /dev/null +++ b/src/th/popsmanga/src/eu/kanade/tachiyomi/extension/th/popsmanga/PopsManga.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.th.popsmanga + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class PopsManga : MangaThemesia( + "PopsManga", + "https://www.popsmanga.com", + "th", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")), +)