diff options
-rw-r--r-- | HISTORY | 6 | ||||
-rw-r--r-- | xineliboutput.c | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -1,8 +1,9 @@ VDR Plugin 'xineliboutput' Revision History ------------------------------------------- -- NOTE: updated command-line options ! +2006-09-04: Version 1.0.0pre4 +- WARNING: updated command-line options ! - Fixed starting replay of new file while old file is still playing - Fixed segfault in OSD downscaling - Added SPU track selection for DVDs without menu @@ -17,6 +18,9 @@ VDR Plugin 'xineliboutput' Revision History - Minor updates to playlists and file replay OSD handling - Added trick speed modes (forward only) to DVD player - Improved X11 fullscreen <-> window mode switching +- Improved display blanking: blank image is now generated using + last seen video frame size and aspect ratio. This should reduce + OSD resizings and re-positioning when switching channels. 2006-08-25: Version 1.0.0pre3 diff --git a/xineliboutput.c b/xineliboutput.c index e4ffd9b5..a394a5c3 100644 --- a/xineliboutput.c +++ b/xineliboutput.c @@ -21,7 +21,7 @@ * * xineliboutput.c: VDR Plugin interface * - * $Id: xineliboutput.c,v 1.9 2006-09-01 12:36:08 phintuka Exp $ + * $Id: xineliboutput.c,v 1.10 2006-09-04 13:54:27 phintuka Exp $ * */ @@ -43,7 +43,7 @@ //---------------------------------plugin------------------------------------- -static const char *VERSION = "1.0.0pre3"; +static const char *VERSION = "1.0.0pre4"; static const char *DESCRIPTION = "X11/xine-lib output plugin"; static const char *MAINMENUENTRY = "Xine-lib"; |