ComiCake extension: Added LetItGo Scans (#1411)

ComiCake extension: Added LetItGo Scans
This commit is contained in:
Stephane Mensah 2019-08-22 11:19:53 +00:00 committed by Eugene
parent b1794835f5
commit 67d4bc0572
2 changed files with 6 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: ComiCake'
pkgNameSuffix = 'all.comicake'
extClass = '.ComiCakeFactory'
extVersionCode = 5
extVersionCode = 6
libVersion = '1.2'
}

View File

@ -9,11 +9,14 @@ class ComiCakeFactory : SourceFactory {
fun getAllComiCake(): List<Source> {
return listOf(
WhimSubs(),
PTScans()
WhimSubs(),
PTScans(),
LetItGoScans()
)
}
class WhimSubs : ComiCake("WhimSubs", "https://whimsubs.xyz", "en")
class PTScans : ComiCake("ProjectTime Scans", "https://read.ptscans.com", "en", "/")
class LetItGoScans : ComiCake("LetItGo Scans", "https://reader.letitgo.scans.today", "en", "/")