Initial commit

This commit is contained in:
FourTOne5
2024-01-09 04:12:39 +06:00
commit 600c345dfe
8593 changed files with 150590 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

View File

@@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.tr.tortugaceviri
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.Response
import java.text.SimpleDateFormat
import java.util.Locale
class TortugaCeviri : Madara(
"Tortuga Ceviri",
"https://tortuga-ceviri.com",
"tr",
SimpleDateFormat("MMM d, yyy", Locale("tr")),
) {
override val versionId = 2
override val useNewChapterEndpoint = true
override fun chapterListParse(response: Response): List<SChapter> =
super.chapterListParse(response).reversed()
}