Skip to content

Commit a83c261

Browse files
authored
Add PlumaComics (keiyoushi#5705)
1 parent 067a67a commit a83c261

File tree

7 files changed

+27
-0
lines changed

7 files changed

+27
-0
lines changed

src/pt/plumacomics/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
ext {
2+
extName = 'Pluma Comics'
3+
extClass = '.PlumaComics'
4+
themePkg = 'madara'
5+
baseUrl = 'https://plumacomics.cloud'
6+
overrideVersionCode = 0
7+
}
8+
9+
apply from: "$rootDir/common.gradle"
7.33 KB
Loading
3.57 KB
Loading
12 KB
Loading
24.8 KB
Loading
42.3 KB
Loading
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package eu.kanade.tachiyomi.extension.pt.plumacomics
2+
3+
import eu.kanade.tachiyomi.multisrc.madara.Madara
4+
import okhttp3.Response
5+
import java.text.SimpleDateFormat
6+
import java.util.Locale
7+
8+
class PlumaComics : Madara(
9+
"Pluma Comics",
10+
"https://plumacomics.cloud",
11+
"pt-BR",
12+
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
13+
) {
14+
override val useNewChapterEndpoint = true
15+
16+
override fun chapterListParse(response: Response) =
17+
super.chapterListParse(response).reversed()
18+
}

0 commit comments

Comments
 (0)