Changeset 1848
- Timestamp:
- 29/10/08 19:47:01 (2 months ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11129- Location:
- freevo
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
src/plugins/idlebar/encoding.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freevo/ChangeLog
r1847 r1848 19 19 20 20 * New wikisubtitles video plug-in to get subtitles for videos (F#2147641) 21 * Updated mouse susport so that it is optional (F#2089306)22 21 * 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) 23 25 * Updated youtube plug-in to allow standard and locale specific feeds (F#2099147) 24 26 * 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)27 27 * 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) 29 30 * Fixed joy plug-in to remove any pending events when enabled (B#1916407) 30 31 * Fixed mplayer crash when auto cropping is enabled (B#2089592) 31 * Fixed record server auto re encode show title (B#2193796)32 * Fixed record server auto re-encode show title (B#2193796) 32 33 * Fixed record server generic record module to allow a group_type to be given (B#2017200) 33 34 * Fixed RTVE video plug-in for changes to the web page (B#2196882) -
freevo/src/plugins/idlebar/encoding.py
r1661 r1848 93 93 self.state = 'noserver' 94 94 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) 96 96 97 97 98 98 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 ] 100 103 101 104
