MangaPlus: add new label DX (#9977)

* add new label "DX" to M+

currently only includes one title (100535)

* bump ext version
This commit is contained in:
nicki 2025-08-04 00:22:07 -07:00 committed by Draff
parent 853a801f2f
commit 26770629cb
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'MANGA Plus by SHUEISHA' extName = 'MANGA Plus by SHUEISHA'
extClass = '.MangaPlusFactory' extClass = '.MangaPlusFactory'
extVersionCode = 54 extVersionCode = 55
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -211,6 +211,7 @@ class Label(val label: LabelCode? = LabelCode.WEEKLY_SHOUNEN_JUMP) {
LabelCode.MANGA_PLUS_CREATORS -> "MANGA Plus Creators" LabelCode.MANGA_PLUS_CREATORS -> "MANGA Plus Creators"
LabelCode.SAIKYOU_JUMP -> "Saikyou Jump" LabelCode.SAIKYOU_JUMP -> "Saikyou Jump"
LabelCode.ULTRA_JUMP -> "Ultra Jump" LabelCode.ULTRA_JUMP -> "Ultra Jump"
LabelCode.DX -> "Dash X Comic"
else -> null else -> null
} }
} }
@ -250,6 +251,9 @@ enum class LabelCode {
@SerialName("UJ") @SerialName("UJ")
ULTRA_JUMP, ULTRA_JUMP,
@SerialName("DX")
DX,
} }
@Serializable @Serializable