diff --git a/src/pt/gekkouscans/build.gradle b/src/pt/gekkouscans/build.gradle new file mode 100644 index 000000000..e9fd031eb --- /dev/null +++ b/src/pt/gekkouscans/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Gekkou Scans' + extClass = '.GekkouScans' + themePkg = 'madara' + baseUrl = 'https://gekkou.space' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/pt/gekkouscans/res/mipmap-hdpi/ic_launcher.png b/src/pt/gekkouscans/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..862bed497 Binary files /dev/null and b/src/pt/gekkouscans/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/gekkouscans/res/mipmap-mdpi/ic_launcher.png b/src/pt/gekkouscans/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..1e278c3b6 Binary files /dev/null and b/src/pt/gekkouscans/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/gekkouscans/res/mipmap-xhdpi/ic_launcher.png b/src/pt/gekkouscans/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..0e0e6ba9b Binary files /dev/null and b/src/pt/gekkouscans/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/gekkouscans/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/gekkouscans/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..d48a35f9f Binary files /dev/null and b/src/pt/gekkouscans/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/gekkouscans/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/gekkouscans/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..46e28be7b Binary files /dev/null and b/src/pt/gekkouscans/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/gekkouscans/src/eu/kanade/tachiyomi/extension/pt/gekkouscans/GekkouScans.kt b/src/pt/gekkouscans/src/eu/kanade/tachiyomi/extension/pt/gekkouscans/GekkouScans.kt new file mode 100644 index 000000000..0c0fbde32 --- /dev/null +++ b/src/pt/gekkouscans/src/eu/kanade/tachiyomi/extension/pt/gekkouscans/GekkouScans.kt @@ -0,0 +1,21 @@ +package eu.kanade.tachiyomi.extension.pt.gekkouscans + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import eu.kanade.tachiyomi.network.interceptor.rateLimit +import java.text.SimpleDateFormat +import java.util.Locale + +class GekkouScans : Madara( + "Gekkou Scans", + "https://gekkou.space", + "pt-BR", + SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")), +) { + override val client = super.client.newBuilder() + .rateLimit(3) + .build() + + override val useNewChapterEndpoint = true + + override val useLoadMoreRequest = LoadMoreStrategy.Never +}