diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2011-04-14 18:37:48 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2011-04-14 18:37:48 +0200 |
commit | e599ddd1095c0c60d119ba58038a0ef742bfe72f (patch) | |
tree | ac07027f2c67dd06995213464afb5bb63dee3913 | |
parent | bf6cca4269d005b0ec2e4ec3f7dfda89c6dacfc6 (diff) | |
download | vdr-plugin-extrecmenu-e599ddd1095c0c60d119ba58038a0ef742bfe72f.tar.gz vdr-plugin-extrecmenu-e599ddd1095c0c60d119ba58038a0ef742bfe72f.tar.bz2 |
Updated for v1.2.1 release.
-rw-r--r-- | HISTORY | 8 | ||||
-rw-r--r-- | extrecmenu.c | 2 |
2 files changed, 6 insertions, 4 deletions
@@ -1,20 +1,22 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- -2011-xx-xx: Version 1.2.1 +2011-04-15: Version 1.2.1 - [amair] Reducing I/O priority for cut/move thread (if VDR >= 1.7.6 is used). - [amair] Fixed counting of hidden recordings if PIN plugin is used (Bug #421). +- [amair] Change default view for recordings menu to match VDR's recordings menu. +- [amair] "Call plugin after playback" option only changes BACK/EXIT key, BLUE key always jumps to LiveTV (suggested by Brougs78 @vdr-portal.de) - [amair] Ignore comments in dircmds.conf (Submitted by TomG @vdr-portal.de). +- [amair] Updated Spanish translation (See #616). - [sibbi] Added ability to configure items that should be shown in recording list. - [amair] Merged following changes from v1.3-devel head (Submitted by Joe_D @vdr-portal.de). - [amair] Lifetime and priority for TS recordings can be edited again. - [amair] Use international characters for renaming recordings and creating directories like VDR. -- [amair] Don't use the VDR cutter by default as it has some usability issues (Can be enabled by defining USE_VDR_CUTTER). - [amair] Updated Italian translation (Submitted by Diego Pierotto). - [amair] Enable support for PIN plugin if USE_PINPLUGIN is set to "1" in Make.config. - [amair] Reorganiced contrib directory. - [amair] Fixed compiler warnings and errors. -- [amair] Use VDR's cutting feature (Submitted by Helmut Auer). +- [amair] Optinally use VDR's cutting feature (Submitted by Helmut Auer) (Must be enabled by defining EXTRECMENU_USE_VDR_CUTTER as it has some usability issues). - [amair] Added HDD archive feature (Submitted by Carsten Siebholz). - [amair] Updated VDRSymbols font to version 20100612. - [amair] Included Rating patch (Submitted by Carsten Siebholz). diff --git a/extrecmenu.c b/extrecmenu.c index c382698..f0c958d 100644 --- a/extrecmenu.c +++ b/extrecmenu.c @@ -20,7 +20,7 @@ using namespace std; -static const char *VERSION = "1.2.1pre"; +static const char *VERSION = "1.2.1"; static const char *DESCRIPTION = tr("Extended recordings menu"); static const char *MAINMENUENTRY = "ExtRecMenu"; |