diff options
-rw-r--r-- | HISTORY.h | 9 | ||||
-rwxr-xr-x | scripts/epgd-dropall | 2 | ||||
-rw-r--r-- | webstore.c | 1 |
3 files changed, 8 insertions, 4 deletions
@@ -4,8 +4,8 @@ * ----------------------------------- */ -#define _VERSION "1.1.126" -#define VERSION_DATE "02.01.2017" +#define _VERSION "1.1.127" +#define VERSION_DATE "08.02.2018" #define DB_API 5 #ifdef GIT_REV @@ -18,7 +18,10 @@ * ------------------------------------ * -2017-01-02: version 1.1.126 (ckone) +2018-02-08: version 1.1.127 (horchi) + - change: store timer type to support 'switch' timer + +2018-01-02: version 1.1.126 (ckone) - change: improved handling of reinstated events in merge procedure 2017-12-22: version 1.1.125 (horchi) diff --git a/scripts/epgd-dropall b/scripts/epgd-dropall index 2c93522..f8a2d00 100755 --- a/scripts/epgd-dropall +++ b/scripts/epgd-dropall @@ -30,7 +30,7 @@ if [ "${c}" = "y" ]; then mysql -u epg2vdr -Depg2vdr -e 'drop table if exists analyse;' mysql -u epg2vdr -Depg2vdr -e 'drop table if exists snapshot;' - echo "Now you have two choices for timers and timersdone:" + echo "Now you have two choices for timers and timersdone (only the pending ones):" echo " 1. Automatic (without dropping the timers table):" echo " All created timers will be marked for delete action to force VDRs to remove them" echo " 2. Drop table timers - you have to cleanup the timers.conf of your VDRs by hand" @@ -343,6 +343,7 @@ int cEpgHttpd::storeTimerJob(json_t* jInData, json_t* response) getFieldFromJson(jInData, &timerRow, "CHILDLOCK"); getFieldFromJson(jInData, &timerRow, "CHANNELID"); getFieldFromJson(jInData, &timerRow, "DIRECTORY"); + getFieldFromJson(jInData, &timerRow, "TYPE"); modifyCreateTimer(&timerRow); } |