Something I noticed while checking for magazine details of m+ titles is that the total no of titles in official/mangaplus and publoader/mangaplus differ by a lot: most are older titles that are long axed finished and so don't really come up in latest (although some no longer exist on mangaplus side which are stranger)
this can easily be seen using our beloved curl and jq (and sort and difft)
; difft \
<(curl 'https://raw.githubusercontent.com/ArdaxHz/publoader-extensions/main/src/mangaplus/manga_id_map.json' | jq -r '.[].[]' | sort) \
<(curl 'https://jumpg-webapi.tokyo-cdn.com/api/title_list/allV2?format=json' | jq '.success.allTitlesViewV2.AllTitlesGroup.[].titles.[].titleId' | sort)
;
Something I noticed while checking for magazine details of m+ titles is that the total no of titles in official/mangaplus and publoader/mangaplus differ by a lot: most are older titles that are long
axedfinished and so don't really come up in latest (although some no longer exist on mangaplus side which are stranger)this can easily be seen using our beloved curl and jq (and sort and difft)