diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.DE | 2 | ||||
-rw-r--r-- | control-image.c | 14 | ||||
-rw-r--r-- | image.c | 2 |
5 files changed, 13 insertions, 10 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'image' Revision History ----------------------------------- +2006-01-08 +- Bounce to vdr-1.3.38 (Required) + 2006-01-06 - add italian/dutch/portuguese/spanish translations via babelfish @@ -18,7 +18,7 @@ Some files are from the mp3/MPlayer Plugin. Thanks to Stefan Hülswitt Required: ----------- - fullfeatured dvb card -- vdr 1.3.29+ +- vdr 1.3.38+ - to compile plugin depends package libavcodec1-dev (tested with ffmpeg-0.4.8/ffmpeg-0.4.9pre1/ffmpeg-cvs) - to run your will need package netpbm and libavcodec1 - netpbm 10.0+ (check for "anytopnm", if it does not exist upgrade/install netpbm) @@ -18,7 +18,7 @@ Einige Dateien stammen vom mp3/MPlayer Plugin, der danke geht an Stefan Hülswitt Benötigt: ----------- - Full-Featured DVB Karte -- vdr 1.3.29+ +- vdr 1.3.38+ - das Plugin ist abhängig vom Paket libavcodec1-dev zu übersetzen, (getestet mit ffmpeg-0.4.8/ffmpeg-0.4.9pre1/ffmpeg-cvs) - und Paket netpbm sowie libavcodec1 zur Ausführung - netpbm 10.0+ (prüfe ob das Tool "anytopnm" existiert) diff --git a/control-image.c b/control-image.c index 0182687..d8a4561 100644 --- a/control-image.c +++ b/control-image.c @@ -59,7 +59,7 @@ cImageControl::cImageControl(cSlideShow * pNewSlideShow) , m_pDisplayReplay(NULL) { // Notity all cStatusMonitor - cStatus::MsgReplaying(this, "[image]"); + cStatus::MsgReplaying(this, "image", NULL, true ); m_tStarted = time(NULL); @@ -87,7 +87,7 @@ cImageControl::~cImageControl() delete m_pImageMenu; m_pImageMenu = NULL; // Notity cleanup all cStatusMonitor - cStatus::MsgReplaying(this, NULL); + cStatus::MsgReplaying(this, "image", NULL, false); // Hide OSD HideOSD(); if(m_pDisplayReplay) { @@ -152,15 +152,15 @@ void cImageControl::ShowStatusMsg() char* sz = 0; if(IsConvertRunning()) // Display that convert is running { - asprintf(&sz,"[image] %s",tr("Convert...")); + asprintf(&sz,"%s",tr("Convert...")); } else { switch(m_ePlayMode) { - case ePlayModeNormal: asprintf(&sz,"[image] %s",FileName());break; - case ePlayModeJump: asprintf(&sz,"[image] %s",tr("Select picture via key 1..9!"));break; - case ePlayModeZoom: asprintf(&sz,"[image] %s %dx",tr("Zoom"),m_nZoomFactor);break; + case ePlayModeNormal: asprintf(&sz,"%s",FileName());break; + case ePlayModeJump: asprintf(&sz,"%s",tr("Select picture via key 1..9!"));break; + case ePlayModeZoom: asprintf(&sz,"%s %dx",tr("Zoom"),m_nZoomFactor);break; } } if(sz) @@ -171,7 +171,7 @@ void cImageControl::ShowStatusMsg() if(m_szLastShowStatusMsg) free(m_szLastShowStatusMsg); m_szLastShowStatusMsg = sz; - cStatus::MsgReplaying(this, m_szLastShowStatusMsg); + cStatus::MsgReplaying(this, "image" , m_szLastShowStatusMsg, true ); } else free(sz); @@ -36,7 +36,7 @@ #include "commands.h" #include "liboutput/encode.h" -static const char *VERSION = "0.2.4"; +static const char *VERSION = "0.2.5"; static const char *DESCRIPTION = "A Image Viewer plugin"; static const char *MAINMENUENTRY = "Image"; |