A neat little python script can add leading zero's to all the file names this way they will appear in order.
Something like this:
import sys,os,re
for file in sys.argv[1:]:
if __file__ in file: continue
number, name = file.split('-', 1)
number = '{:0>4}'.format(number)
new_name = f'{number}-{name}'
os.rename(file,new_name)
PR #335 is the result of the above program.