There are times when oneshots are part of a series. They usually have no volume numbers. Take a look at Ryuujin no Rinjin.
My suggestion is for oneshots to be below volume 1 (or 0) instead of above the most recent volume (or chapter, if chapter has no no volume number).
It's annoying to go from volume 2 chapter 8 to no volume oneshot. IMO, the oneshot is out of place.
This should be easy to program in. Example:
The first two if statements allow for normal chapter listing procedure. The third one is the one to add the oneshot below everything else.
I'm not sure what programming language you use, but with this simplistic code you should get my drift.
My suggestion is for oneshots to be below volume 1 (or 0) instead of above the most recent volume (or chapter, if chapter has no no volume number).
It's annoying to go from volume 2 chapter 8 to no volume oneshot. IMO, the oneshot is out of place.
This should be easy to program in. Example:
Code:
If (volume # is not blank) then return
If (chapter # is not blank) then return
If (chapter title = "oneshot" or "Oneshot") then goto routine to add the oneshot to the bottom of the chapter list instead of the top.
Return
The first two if statements allow for normal chapter listing procedure. The third one is the one to add the oneshot below everything else.
I'm not sure what programming language you use, but with this simplistic code you should get my drift.
Upvote
2