From 75fb7a929da173bb5064f31c12d620b6b98046dd Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Fri, 26 Dec 2014 16:07:21 +0100 Subject: [PATCH] DVR autorec: use 'Start After' and 'Start Before' for the start time window --- docs/html/dvr_autorec.html | 8 ++++---- src/dvr/dvr_autorec.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/html/dvr_autorec.html b/docs/html/dvr_autorec.html index cdd1a81e..1a482ecf 100644 --- a/docs/html/dvr_autorec.html +++ b/docs/html/dvr_autorec.html @@ -79,13 +79,13 @@ The maximal duration of a matching event - in other words, only match programmes
On which specific days of the week to find matching programmes.

-

Start Time +
Start After
-An event which starts between this "start time" and "start time up to" will be matched (including). +An event which starts between this "start after" and "start before" will be matched (including boundary values).

-

Start Up To +
Start Before
-The start up to limit. +An event which starts between this "start after" and "start before" will be matched (including boundary values).

Priority
diff --git a/src/dvr/dvr_autorec.c b/src/dvr/dvr_autorec.c index 1ff6477a..1cf8bb68 100644 --- a/src/dvr/dvr_autorec.c +++ b/src/dvr/dvr_autorec.c @@ -876,7 +876,7 @@ const idclass_t dvr_autorec_entry_class = { { .type = PT_STR, .id = "start", - .name = "Start Time", + .name = "Start After", .set = dvr_autorec_entry_class_start_set, .get = dvr_autorec_entry_class_start_get, .list = dvr_autorec_entry_class_time_list_, @@ -885,7 +885,7 @@ const idclass_t dvr_autorec_entry_class = { { .type = PT_STR, .id = "start_window", - .name = "Start Up To", + .name = "Start Before", .set = dvr_autorec_entry_class_start_window_set, .get = dvr_autorec_entry_class_start_window_get, .list = dvr_autorec_entry_class_time_list_,