diff options
author | horchi <vdr@jwendel.de> | 2020-08-17 16:53:32 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2020-08-17 16:53:32 +0200 |
commit | d67a088d3052497ad082174c15af311a7f182894 (patch) | |
tree | d04e22b1b1e18a60a70d2436191e4da0740848e8 | |
parent | 25ab2b2766b5b49caf7951eef7aa06a0b3dba0db (diff) | |
download | vdr-plugin-epg2vdr-1.1.116.tar.gz vdr-plugin-epg2vdr-1.1.116.tar.bz2 |
2020-08-17: version 1.1.116 (horchi, patch by kfb77)\n - change: Improved match of series\n\n1.1.116
-rw-r--r-- | HISTORY.h | 7 | ||||
-rw-r--r-- | lib/common.c | 1 | ||||
-rw-r--r-- | update.c | 3 |
3 files changed, 6 insertions, 5 deletions
@@ -5,8 +5,8 @@ * */ -#define _VERSION "1.1.115" -#define VERSION_DATE "14.08.2020" +#define _VERSION "1.1.116" +#define VERSION_DATE "17.08.2020" #define DB_API 7 @@ -19,6 +19,9 @@ /* * ------------------------------------ +2020-08-17: version 1.1.116 (horchi, patch by kfb77) + - change: Improved match of series + 2020-08-14: version 1.1.115 (horchi) - bugfix: Fixed missing images after restart - again diff --git a/lib/common.c b/lib/common.c index e6bafae..11346c5 100644 --- a/lib/common.c +++ b/lib/common.c @@ -379,6 +379,7 @@ void prepareCompressed(std::string& pattern) toUpper(pattern); removeWord(pattern, " TEIL "); + removeWord(pattern, "(TEIL "); removeWord(pattern, " FOLGE "); removeCharsExcept(pattern, notignore); } @@ -2112,10 +2112,7 @@ int cUpdate::cleanupPictures() useeventsDb->clear(); for (int res = selectAllEvents->find(); res; res = selectAllEvents->fetch()) - { useIds.insert(useeventsDb->getIntValue("USEID")); - // tell(0, "DEBUG: insert useid '%ld'", useeventsDb->getIntValue("USEID")); - } selectAllEvents->freeResult(); } |