diff options
-rw-r--r-- | HISTORY | 8 | ||||
-rw-r--r-- | HISTORY.DE | 22 | ||||
-rw-r--r-- | epgsearch.c | 2 |
3 files changed, 31 insertions, 1 deletions
@@ -1,6 +1,14 @@ VDR Plugin 'epgsearch' Revision History --------------------------------------- +2021-05-24; Version 2.4.1 +fixes: +- Fixed conflictcheck for encrypted channels with internal CAMs +- Fixed compiling with gcc11 +- Updated deprecated calls to SetItemEvent +- Temporally(?) added #define DISABLE_TEMPLATES_COLLIDING_WITH_STL for + compatibility with vdr 2.5.4 + 2021-04-12 new: - Improved handling of remote timers @@ -1,6 +1,28 @@ VDR Plugin 'epgsearch' Revision History --------------------------------------- +-2021-05-24; Version 2.4.1 +-fixes: +-- Fixed conflictcheck for encrypted channels with internal CAMs +-- Fixed compiling with gcc11 +-- Updated deprecated calls to SetItemEvent +-- Temporally(?) added #define DISABLE_TEMPLATES_COLLIDING_WITH_STL for +-- compatibility with vdr 2.5.4 +- +-2021-04-12 +-neu: +-- Improved handling of remote timers +-- Replace auto_ptr with unique_ptr for c++11 (kfb77@vdr-portal.de) +-- Delay threads after pluginstart 10 secs (configurable) +-- Changed fgets to allow compiling with clang +-- Clarified "avoid repeats". Forced subtitle-comparison is named "yes" again +- New option "allow empty" +-fixes: +-- Fixed several lock sequence errors +-- Fix utf-8 encoding in docs and manpages (kfb77 and seahawk1986@vdr-portal.de) +-- Fixed possible format overflow +-- Fixed displaying NAME in generated manpages thanks to etobi + 2018-04-16; Version 2.4.0 neu: - Create man pages only once. by jasminj@vdr-portal.de diff --git a/epgsearch.c b/epgsearch.c index 0df27a1..e80dfd6 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -74,7 +74,7 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #error "VDR-2.3.6 API version or greater is required!" #endif -static const char VERSION[] = "2.4.0"; +static const char VERSION[] = "2.4.1"; static const char DESCRIPTION[] = trNOOP("search the EPG for repeats and more"); // globals |