diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-10 13:58:17 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-10 13:58:17 +0000 |
commit | 3e899e6cda0ce9ba19daa4505ef4cb95aff4fd00 (patch) | |
tree | 9fc8c0fb27d9abe041ce8e5e7dc6959420556626 | |
parent | 79afc8f52035aed6e4f7bc5f19cdff7dc34caf4a (diff) | |
download | vdr-plugin-muggle-0.0.7-BETA.tar.gz vdr-plugin-muggle-0.0.7-BETA.tar.bz2 |
Error in version distinction removed0.0.7-BETA
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/tags/0.0.7-BETA@220 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | muggle.c | 2 | ||||
-rw-r--r-- | muggle.doxygen | 2 | ||||
-rw-r--r-- | vdr_player.c | 5 |
3 files changed, 6 insertions, 3 deletions
@@ -22,7 +22,7 @@ #include <getopt.h> #include <config.h> -static const char *VERSION = "0.0.6"; +static const char *VERSION = "0.0.7"; static const char *DESCRIPTION = "Media juggle plugin for VDR"; static const char *MAINMENUENTRY = "Muggle"; diff --git a/muggle.doxygen b/muggle.doxygen index 8703db4..d393679 100644 --- a/muggle.doxygen +++ b/muggle.doxygen @@ -23,7 +23,7 @@ PROJECT_NAME = Muggle media plugin # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.0.5 +PROJECT_NUMBER = 0.0.7 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/vdr_player.c b/vdr_player.c index d69897f..d46a4af 100644 --- a/vdr_player.c +++ b/vdr_player.c @@ -1174,23 +1174,26 @@ void mgPlayerControl::Display() } // now an osd is open, go on - if( m_progress_view ) { +#if VDRVERSNUM >= 10307 if( m_menu ) { delete m_menu; m_menu = NULL; } +#endif ShowProgress(); } else { +#if VDRVERSNUM >= 10307 if( m_display ) { delete m_display; m_display = NULL; } +#endif ShowContents(); } } |