2014-10-24, 11:08 PM
NYPlayer Wrote:One question can future updates sort by Season and Episode?
I figured that request would be coming eventually but unless you are using something like iGL to rename files, the historical data is not there.
It's a trivial change to show it that way, if you can edit recent.py. Just add this line after line 202
Code:
self.recentData = sorted(self.recentData, key = lambda x: (x['season'], x['episode']))
Martin