I like the search that NextPVR offers on the local website. It works quickly and allows quick recording. However, it has very limited options. I think it should be quite easy to make this search more sophisticated. For example, it would be great to be able to sort results by channels, not only by date. To do this (permanently) you should only change one file:
In line 217 after:
and before:
add:
and that's all. It would be great to add a checkbox or other sort option.
Code:
C:\Program Files\NextPVR\wwwroot\search.html
In line 217 after:
Code:
success: function (data) {
Code:
app.__vue__.$refs.listingList.showListings(data.listings);
Code:
data.listings.sort(function (a, b) {
return a.channelName.localeCompare(b.channelName);
});