Mangadex: Add nepali and forgotten Other (#10002)

* add the forgotten `Other`

* add nepali to mangadex factory

* bump mangadex.extVersionCode
This commit is contained in:
nicki 2021-12-05 22:50:54 +05:30 committed by GitHub
parent 21f6f747ed
commit 8f22b785d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'MangaDex' extName = 'MangaDex'
pkgNameSuffix = 'all.mangadex' pkgNameSuffix = 'all.mangadex'
extClass = '.MangaDexFactory' extClass = '.MangaDexFactory'
extVersionCode = 143 extVersionCode = 144
isNsfw = true isNsfw = true
} }

View File

@ -46,6 +46,8 @@ class MangaDexFactory : SourceFactory {
MangaDexHebrew(), MangaDexHebrew(),
MangaDexHindi(), MangaDexHindi(),
MangaDexNorwegian(), MangaDexNorwegian(),
MangaDexNepali(),
Other()
) )
} }
@ -90,4 +92,5 @@ class MangaDexLithuanian : MangaDex("lt", "lt")
class MangaDexHebrew : MangaDex("he", "he") class MangaDexHebrew : MangaDex("he", "he")
class MangaDexHindi : MangaDex("hi", "hi") class MangaDexHindi : MangaDex("hi", "hi")
class MangaDexNorwegian : MangaDex("no", "no") class MangaDexNorwegian : MangaDex("no", "no")
class MangaDexNepali : MangaDex("ne", "ne")
class Other : MangaDex("other", "NULL") class Other : MangaDex("other", "NULL")