Author: duncan
Date: Sun Feb 17 09:37:00 2008
New Revision: 10374

Log:
[ 1893373 ] xine show osd message in wrong enc
Patch from Valera Koval applied


Modified:
   branches/rel-1-7/freevo/ChangeLog
   branches/rel-1-7/freevo/src/tv/plugins/ivtv_xine_tv.py
   branches/rel-1/freevo/ChangeLog
   branches/rel-1/freevo/src/tv/plugins/ivtv_xine_tv.py

Modified: branches/rel-1-7/freevo/ChangeLog
==============================================================================
--- branches/rel-1-7/freevo/ChangeLog   (original)
+++ branches/rel-1-7/freevo/ChangeLog   Sun Feb 17 09:37:00 2008
@@ -28,6 +28,7 @@
  * Updated youtube video plug-in to look up two links (F#1890214)
  * Fixed audio selection for the first track for mkv and ogm video files 
(B#1890498)
  * Fixed cdbackup plug-in to allow empty parameters (B#1889068)
+ * Fixed ivtv_xine_tv plug-in encoding of OSD messages (B#1893373)
  * Fixed rom_drives plug-in crashing when toggling the eject/close drive 
(B#1890647)
  * Fixed the main program to cause a crash when local_conf.py is invalid 
(B#1886624)
  * Fixed web servers encoding interface (B#1885914)

Modified: branches/rel-1-7/freevo/src/tv/plugins/ivtv_xine_tv.py
==============================================================================
--- branches/rel-1-7/freevo/src/tv/plugins/ivtv_xine_tv.py      (original)
+++ branches/rel-1-7/freevo/src/tv/plugins/ivtv_xine_tv.py      Sun Feb 17 
09:37:00 2008
@@ -369,7 +369,7 @@
     def ShowMessage(self, msg):
 
         _debug_("IVTV_XINE_TV: Show OSD Message: '%s'" % msg, DDEBUG)
-        self.xine.write("OSDWriteText$     %s\n" % msg)
+        self.xine.write("OSDWriteText$     %s\n" % String(msg))
 
 
     #========================================================================

Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog     (original)
+++ branches/rel-1/freevo/ChangeLog     Sun Feb 17 09:37:00 2008
@@ -31,6 +31,7 @@
  * Updated youtube video plug-in to look up two links (F#1890214)
  * Fixed audio selection for the first track for mkv and ogm video files 
(B#1890498)
  * Fixed cdbackup plug-in to allow empty parameters (B#1889068)
+ * Fixed ivtv_xine_tv plug-in encoding of OSD messages (B#1893373)
  * Fixed the main program to cause a crash when local_conf.py is invalid 
(B#1886624)
  * Fixed web servers encoding interface (B#1885914)
 

Modified: branches/rel-1/freevo/src/tv/plugins/ivtv_xine_tv.py
==============================================================================
--- branches/rel-1/freevo/src/tv/plugins/ivtv_xine_tv.py        (original)
+++ branches/rel-1/freevo/src/tv/plugins/ivtv_xine_tv.py        Sun Feb 17 
09:37:00 2008
@@ -336,7 +336,7 @@
     def ShowMessage(self, msg):
 
         _debug_("IVTV_XINE_TV: Show OSD Message: '%s'" % msg)
-        self.xine.write("OSDWriteText$     %s\n" % msg)
+        self.xine.write("OSDWriteText$     %s\n" % String(msg))
 
 
     #========================================================================

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to