diff options
author | horchi <vdr@jwendel.de> | 2018-02-08 20:04:20 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-08 20:04:20 +0100 |
commit | c676f22efe2d89752f21ae135447c238239bb794 (patch) | |
tree | 9a1a6a7aee0a192b726a20911a7fa2c205f32d28 | |
parent | 67c936be3377781ccf12868e6d9ca3b7859ee2a0 (diff) | |
download | vdr-epg-daemon-c676f22efe2d89752f21ae135447c238239bb794.tar.gz vdr-epg-daemon-c676f22efe2d89752f21ae135447c238239bb794.tar.bz2 |
2018-02-08: version 1.1.127 (horchi)\n - change: store timer type to support 'switch' timer\n\n1.1.127
-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); } |