diff options
-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(); } |