Changeset 1890

Show
Ignore:
Timestamp:
16/11/08 19:20:46 (8 weeks ago)
Author:
duncan
svm:headrev:

cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11172
Message:

[ 2298515 ] TV_SEND_MPLAYER_CMD event is missing
Patch from Matthias Reichl applied

Location:
freevo
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • freevo/ChangeLog

    r1875 r1890  
    44$Id$ 
    55 
     6 * Updated mplayer tv plug-in to CSEND_MPLAYER_CMD 
    67Note 
    78---- 
     
    1516svn co svn://svn.freevo.org/freevo/branches/rel-1-7/freevo freevo-1.7.x 
    1617 
    17 == Release 1.8.3 (2008-11-15) == 
     18== Release 1.8.3 (2008-12-01) == 
    1819-------------------------------- 
    1920 
     
    2324 * Updated Italian translation (F#2153010) 
    2425 * Updated mouse support so that it is optional (F#2089306) 
     26 * Updated mplayer tv plug-in to have the event TV_SEND_MPLAYER_CMD (F#2298515) 
    2527 * Updated OSD with alpha-blending dialog (F#2255527) 
    2628 * Updated RTVE video plug-in to allow videos from the archive to be played (F#2104431) 
  • freevo/src/event.py

    r1783 r1890  
    165165TV_CHANNEL_LAST        = Event('TV_CHANNEL_LAST') 
    166166TV_SEND_TVTIME_CMD     = Event('TV_SEND_TVTIME_CMD') 
     167TV_SEND_MPLAYER_CMD    = Event('TV_SEND_MPLAYER_CMD') 
    167168TV_GOTO_LIVE_PLAY      = Event('TV_GOTO_LIVE_PLAY') 
    168169VIDEO_NEXT_FILLMODE    = Event('VIDEO_NEXT_FILLMODE') 
  • freevo/src/tv/plugins/mplayer.py

    r1841 r1890  
    412412            return True 
    413413 
     414        elif event == em.TV_SEND_MPLAYER_CMD: 
     415            self.app.write('%s\n' % event.arg); 
     416            return True 
     417 
    414418        return False