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'
|
extName = 'MangaDex'
|
||||||
pkgNameSuffix = 'all.mangadex'
|
pkgNameSuffix = 'all.mangadex'
|
||||||
extClass = '.MangaDexFactory'
|
extClass = '.MangaDexFactory'
|
||||||
extVersionCode = 143
|
extVersionCode = 144
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue