diff --git a/src/pt/gekkouscan/build.gradle b/src/pt/gekkouscan/build.gradle deleted file mode 100644 index bc1f1a401..000000000 --- a/src/pt/gekkouscan/build.gradle +++ /dev/null @@ -1,10 +0,0 @@ -ext { - extName = 'Gekkou Scans' - extClass = '.GekkouScans' - themePkg = 'madara' - baseUrl = 'https://gekkou.site' - overrideVersionCode = 2 - isNsfw = true -} - -apply from: "$rootDir/common.gradle" diff --git a/src/pt/gekkouscan/res/mipmap-hdpi/ic_launcher.png b/src/pt/gekkouscan/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index b0dca4f4e..000000000 Binary files a/src/pt/gekkouscan/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/gekkouscan/res/mipmap-mdpi/ic_launcher.png b/src/pt/gekkouscan/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index faabc8f7e..000000000 Binary files a/src/pt/gekkouscan/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/gekkouscan/res/mipmap-xhdpi/ic_launcher.png b/src/pt/gekkouscan/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 37006ed1f..000000000 Binary files a/src/pt/gekkouscan/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/gekkouscan/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/gekkouscan/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index eeef504a2..000000000 Binary files a/src/pt/gekkouscan/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/gekkouscan/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/gekkouscan/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index a0b5d109b..000000000 Binary files a/src/pt/gekkouscan/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/gekkouscan/src/eu/kanade/tachiyomi/extension/pt/gekkouscan/GekkouScans.kt b/src/pt/gekkouscan/src/eu/kanade/tachiyomi/extension/pt/gekkouscan/GekkouScans.kt deleted file mode 100644 index 8695f53ab..000000000 --- a/src/pt/gekkouscan/src/eu/kanade/tachiyomi/extension/pt/gekkouscan/GekkouScans.kt +++ /dev/null @@ -1,32 +0,0 @@ -package eu.kanade.tachiyomi.extension.pt.gekkouscan - -import eu.kanade.tachiyomi.multisrc.madara.Madara -import eu.kanade.tachiyomi.network.interceptor.rateLimit -import okhttp3.OkHttpClient -import java.text.SimpleDateFormat -import java.util.Locale -import java.util.concurrent.TimeUnit - -class GekkouScans : Madara( - "Gekkou Scans", - "https://gekkou.site", - "pt-BR", - dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")), -) { - - // Theme changed from MMRCMS to Madara, again. - override val versionId: Int = 2 - - override val client: OkHttpClient = super.client.newBuilder() - .connectTimeout(1, TimeUnit.MINUTES) - .readTimeout(1, TimeUnit.MINUTES) - .writeTimeout(1, TimeUnit.MINUTES) - .rateLimit(1, 2, TimeUnit.SECONDS) - .build() - - override val useNewChapterEndpoint: Boolean = true - - override val mangaDetailsSelectorTitle = "#manga-title" - - override val mangaDetailsSelectorStatus = ".summary-heading:contains(Status) ~ .summary-content" -}