diff options
-rw-r--r-- | HISTORY | 15 | ||||
-rw-r--r-- | xineliboutput.c | 4 |
2 files changed, 17 insertions, 2 deletions
@@ -1,6 +1,21 @@ VDR Plugin 'xineliboutput' Revision History ------------------------------------------- +2006-08-25: Version 1.0.0pre3 + +- Fixed segfault when grabbing with remote-only frontends +- Configurable speaker configuration and spdif passthru +- Support for playlists (.m3u or whole directory) in media player +- Separate menu item for playing music +- Configuration options for letterbox cropping +- Added audio visualization support for media files + (originally was supported only with DVB radio) +- Finished image grabbing for remote frontends +- Fixed restoring primary device when using tcp transport +- Executing primary device switching in main thread context +- Added configurable overscan option (%) to crop frame borders + when using displays without overscan + 2006-08-16: Version 1.0.0pre2 - Xine plugins and frontends are not installed automatically. diff --git a/xineliboutput.c b/xineliboutput.c index 3840bb9a..7ee2e7af 100644 --- a/xineliboutput.c +++ b/xineliboutput.c @@ -21,7 +21,7 @@ * * xineliboutput.c: VDR Plugin interface * - * $Id: xineliboutput.c,v 1.7 2006-08-24 23:29:57 phintuka Exp $ + * $Id: xineliboutput.c,v 1.8 2006-08-25 04:16:38 phintuka Exp $ * */ @@ -43,7 +43,7 @@ //---------------------------------plugin------------------------------------- -static const char *VERSION = "1.0.0pre2"; +static const char *VERSION = "1.0.0pre3"; static const char *DESCRIPTION = "X11/xine-lib output plugin"; static const char *MAINMENUENTRY = "Xine-lib"; |