diff --git a/descriptor.c b/descriptor.c index 4556863..da066d6 100644 --- a/descriptor.c +++ b/descriptor.c @@ -355,6 +355,8 @@ content_type(struct descriptor *d) return "Education/Science/Factual"; case 0xa: return "Leisure"; + case 0xf: + return "Drama"; default: return "Undefined"; } diff --git a/main.c b/main.c index 92b559a..0ddfa43 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,6 @@ /* * Humax EPG Tool - * by af123, 2011 - 2017 + * by af123, 2011 - 2018 */ #include @@ -21,7 +21,7 @@ #include "lint.h" int debug = 0; -const char *version = "1.2.7"; +const char *version = "1.2.8"; unsigned long sysopts = 0; unsigned long filterflags = 0; static time_t latest_stamp = 0; @@ -34,7 +34,7 @@ sqlite3_stmt *stmt; int syntax() { - fprintf(stderr, "Humax EPG Tool v%s, by af123, 2011-2017.\n\n", + fprintf(stderr, "Humax EPG Tool v%s, by af123, 2011-2018.\n\n", version); fprintf(stderr, "Syntax: epg [options] [filters] ...\n\n");