recording sort order
#1
Hi all.

With tv recordings, the default sort order appears to be newest at the top, which is the opposite to the way you would want to watch them
You can hit C and choose date sort, which fixes it, but once the folder is empty and recreated it seems to go back to the old default.

Is there a way to set the default sort order, so each folder does not need to be changed when its created?

My preference would be for the initial page to be sorted on name, and each entry group to be sorted by date oldest to newest.

Thanks.
Reply
#2
Not at the moment, I think the PVR windows will be refactored in the next XBMC release so the sorting can be done just like in all other windows (movies, TV shows etc.).
Reply
#3
That seems to be the case, but the default is still newest first.
It would be nice to be able to change the default to oldest first (as thats the way you want to watch them).
Reply
#4
It should be possible nowadays, just change the order and Kodi will remember it.
Reply
#5
Just in case anyone finds this, as of 17.6 the default is hardcoded.

To change to ascending:

--- a/xbmc/pvr/windows/GUIViewStatePVR.cpp
+++ b/xbmc/pvr/windows/GUIViewStatePVR.cpp
@@ -59,6 +59,7 @@ CGUIViewStateWindowPVRRecordings::CGUIViewStateWindowPVRRecordings(const int win
 
   // Default sorting
   SetSortMethod(SortByDate);
+  SetSortOrder(SortOrderAscending);
 
   LoadViewState(items.GetPath(), m_windowId);
 }
Reply
#6
The default is for paths you do not apply a custom order from the options menu. The next line LoadViewState will load the custom sort options etc.
Reply

Logout Mark Read Team Forum Stats Members Help
recording sort order0