diff options
author | horchi <vdr@jwendel.de> | 2020-08-17 16:54:04 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2020-08-17 16:54:04 +0200 |
commit | 449dda4ec3a0333538ba9e83a8066ae5ed10ca92 (patch) | |
tree | aa13426b9c698d5e44d528bf7a7d82fe0c0a3590 | |
parent | 04b0ae3e8101fc36a9df3aa07bf9e6dfdf1b0d38 (diff) | |
download | vdr-epg-daemon-449dda4ec3a0333538ba9e83a8066ae5ed10ca92.tar.gz vdr-epg-daemon-449dda4ec3a0333538ba9e83a8066ae5ed10ca92.tar.bz2 |
2020-08-17: version 1.1.163 (horchi, patch by kfb77)\n - change: Improved match of series\n\n1.1.163
-rw-r--r-- | HISTORY.h | 7 | ||||
-rw-r--r-- | lib/common.c | 1 |
2 files changed, 6 insertions, 2 deletions
@@ -4,8 +4,8 @@ * ----------------------------------- */ -#define _VERSION "1.1.162" -#define VERSION_DATE "28.07.2020" +#define _VERSION "1.1.163" +#define VERSION_DATE "17.08.2020" #define DB_API 7 #ifdef GIT_REV @@ -19,6 +19,9 @@ * * +2020-08-17: version 1.1.163 (horchi, patch by kfb77) + - change: Improved match of series + 2020-07-28: version 1.1.162 (Alexander Grothe, horchi) - change: Improved curl handling diff --git a/lib/common.c b/lib/common.c index 597f0d5..a1b8f8a 100644 --- a/lib/common.c +++ b/lib/common.c @@ -380,6 +380,7 @@ void prepareCompressed(std::string& pattern) toUpper(pattern); removeWord(pattern, " TEIL "); + removeWord(pattern, "(TEIL "); removeWord(pattern, " FOLGE "); removeCharsExcept(pattern, notignore); } |