Changeset 1848

Show
Ignore:
Timestamp:
29/10/08 19:47:01 (2 months ago)
Author:
duncan
svm:headrev:

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

[ 2187603 ] idlebar font 'small0' does not show text 4 encoding progress
FIx applied

Location:
freevo
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • freevo/ChangeLog

    r1847 r1848  
    1919 
    2020 * New wikisubtitles video plug-in to get subtitles for videos (F#2147641) 
    21  * Updated mouse susport so that it is optional (F#2089306) 
    2221 * Updated apple trailers (F#2089598) 
     22 * Updated Italian translation (F#2153010) 
     23 * Updated mouse support so that it is optional (F#2089306) 
     24 * Updated RTVE video plug-in to allow videos from the archive to be played (F#2104431) 
    2325 * Updated youtube plug-in to allow standard and locale specific feeds (F#2099147) 
    2426 * Updated youtube plug-in to feed more than 25 videos (F#2115012) 
    25  * Updated RTVE video plug-in to allow videos from the archive to be played (F#2104431) 
    26  * Updated Italian translation (F#2153010) 
    2727 * Fixed automatic CD-ROM drive detection to ignore comments (B#2085387) 
    28  * Fixed imdb helper to currectly handle dates when available (B#2075291) 
     28 * Fixed encoding idlebar to be able to select a font (B#2187603) 
     29 * Fixed imdb helper to correctly handle dates when available (B#2075291) 
    2930 * Fixed joy plug-in to remove any pending events when enabled (B#1916407) 
    3031 * Fixed mplayer crash when auto cropping is enabled (B#2089592) 
    31  * Fixed record server auto reencode show title (B#2193796) 
     32 * Fixed record server auto re-encode show title (B#2193796) 
    3233 * Fixed record server generic record module to allow a group_type to be given (B#2017200) 
    3334 * Fixed RTVE video plug-in for changes to the web page (B#2196882) 
  • freevo/src/plugins/idlebar/encoding.py

    r1661 r1848  
    9393        self.state     = 'noserver' 
    9494        self.laststate = None 
    95         self.font      = self.skin.get_font(config.OSD_IDLEBAR_FONT) 
     95        self.font      = self.skin.get_font(config.ENCODING_IDLEBAR_FONT) 
    9696 
    9797 
    9898    def config(self): 
    99         return [ ('ENCODING_IDLEBAR', True, 'Use the idlebar'), ] 
     99        return [ 
     100            ('ENCODING_IDLEBAR', True, 'Use the idlebar'), 
     101            ('ENCODING_IDLEBAR_FONT', 'small0', 'Font to use in the idlebar, tiny0 is another good choice'), 
     102        ] 
    100103 
    101104