martxw
Active Member
I've finally found time to update TV Diary to take advantage of Real Time Scheduling.
In the Daily TV Diary tab, the Recorded/To be recorded table now includes a remote control icon to allow you to cancel a scheduled recording or reminder. Reminders are also included in the list and included in the conflict detection.
If you have the Watchlist enabled in Settings, the daily suggestions table includes the remote control icon to allow you to schedule or cancel a recording or reminder.
For scheduling I use the same Programme Details popup as the main WebIF EPG page. This provides comprehensive functionality, showing when there is a conflict and the alternative times you can try to schedule at. So you can navigate within the dialog until you find a time that doesn't conflict.
The Watchlist tab shows all of the programmes in the EPG that match your watchlist specification. Here you can also schedule or cancel.
If you haven't used the watchlist before, you can get TV Diary to suggest all movies with the following specification:
The fields are:
So the first two rules are looking for years 2000 onwards in parentheses or square brackets in the synopsis. This is the general convention for movies, and I'm not that interested in seeing films older than that.
The next rule looks for the title containing "Doctor Who".
The final rule looks for the title containing "qi" and the channel containing "bbc".
The watchlist functionality is based on the Programme Search, and at some point I'll get the watchlist editor to show you the last few searches so you don't have to remember the format. I'm not likely to find time to produce a fully interactive editor.
The Programme Search tab also includes the remote control icons to schedule or cancel recordings. I've also fixed the Return key handing to perform the search. It defaults to Search EPG, but if you click on the Search Diary button that becomes the default.
After scheduling or cancelling, when you close the popup, the TV Diary contents will refresh to reflect any changes you may have made.
FYI the source is at https://github.com/martxw/Humax_tvdiary
In the Daily TV Diary tab, the Recorded/To be recorded table now includes a remote control icon to allow you to cancel a scheduled recording or reminder. Reminders are also included in the list and included in the conflict detection.
If you have the Watchlist enabled in Settings, the daily suggestions table includes the remote control icon to allow you to schedule or cancel a recording or reminder.
For scheduling I use the same Programme Details popup as the main WebIF EPG page. This provides comprehensive functionality, showing when there is a conflict and the alternative times you can try to schedule at. So you can navigate within the dialog until you find a time that doesn't conflict.
The Watchlist tab shows all of the programmes in the EPG that match your watchlist specification. Here you can also schedule or cancel.
If you haven't used the watchlist before, you can get TV Diary to suggest all movies with the following specification:
Code:
C||C||C|(20*)|
C||C||C|[20*]|
C|Doctor Who|C||C||
C|qi|C|bbc|C||
Code:
<Title-Test>|<Title-Text>|<Channel-Test>|<Channel-Text>|<Syn-Test>|<Syn-Text>
The next rule looks for the title containing "Doctor Who".
The final rule looks for the title containing "qi" and the channel containing "bbc".
The watchlist functionality is based on the Programme Search, and at some point I'll get the watchlist editor to show you the last few searches so you don't have to remember the format. I'm not likely to find time to produce a fully interactive editor.
The Programme Search tab also includes the remote control icons to schedule or cancel recordings. I've also fixed the Return key handing to perform the search. It defaults to Search EPG, but if you click on the Search Diary button that becomes the default.
After scheduling or cancelling, when you close the popup, the TV Diary contents will refresh to reflect any changes you may have made.
FYI the source is at https://github.com/martxw/Humax_tvdiary