added bulumanga to zbulu (#5381)

This commit is contained in:
OncePunchedMan 2021-01-11 18:18:34 +00:00 committed by GitHub
parent dc583a62aa
commit 1412a4f908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'zBulu' extName = 'zBulu'
pkgNameSuffix = 'all.zbulu' pkgNameSuffix = 'all.zbulu'
extClass = '.ZbuluFactory' extClass = '.ZbuluFactory'
extVersionCode = 2 extVersionCode = 3
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -7,10 +7,12 @@ class ZbuluFactory : SourceFactory {
override fun createSources(): List<Source> = listOf( override fun createSources(): List<Source> = listOf(
HolyManga(), HolyManga(),
HeavenManga(), HeavenManga(),
KooManga() KooManga(),
BuluManga(),
) )
} }
class HolyManga : Zbulu("HolyManga", "https://w15.holymanga.net") class HolyManga : Zbulu("HolyManga", "https://w15.holymanga.net")
class HeavenManga : Zbulu("HeavenManga", "http://heaventoon.com") class HeavenManga : Zbulu("HeavenManga", "http://heaventoon.com")
class KooManga : Zbulu("Koo Manga", "http://ww1.koomanga.com") class KooManga : Zbulu("Koo Manga", "http://ww1.koomanga.com")
class BuluManga : Zbulu("Bulu Manga", "https://ww5.bulumanga.net")