Mangadex: Add nepali and forgotten Other (#10002)
* add the forgotten `Other` * add nepali to mangadex factory * bump mangadex.extVersionCode
This commit is contained in:
parent
21f6f747ed
commit
8f22b785d6
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'MangaDex'
|
||||
pkgNameSuffix = 'all.mangadex'
|
||||
extClass = '.MangaDexFactory'
|
||||
extVersionCode = 143
|
||||
extVersionCode = 144
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -46,6 +46,8 @@ class MangaDexFactory : SourceFactory {
|
|||
MangaDexHebrew(),
|
||||
MangaDexHindi(),
|
||||
MangaDexNorwegian(),
|
||||
MangaDexNepali(),
|
||||
Other()
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -90,4 +92,5 @@ class MangaDexLithuanian : MangaDex("lt", "lt")
|
|||
class MangaDexHebrew : MangaDex("he", "he")
|
||||
class MangaDexHindi : MangaDex("hi", "hi")
|
||||
class MangaDexNorwegian : MangaDex("no", "no")
|
||||
class MangaDexNepali : MangaDex("ne", "ne")
|
||||
class Other : MangaDex("other", "NULL")
|
||||
|
|
Loading…
Reference in New Issue