diff options
-rw-r--r-- | HISTORY | 7 | ||||
-rw-r--r-- | displaymenu.c | 4 |
2 files changed, 10 insertions, 1 deletions
@@ -88,7 +88,7 @@ VDR Plugin 'nOpacity' Revision History sections for clearer arrangement - different minor changes and fixes -Version 0.0.6 +2012-02-07: Version 0.0.6 - Introduced new narrow displayed Recordings menu - Fixed displaying configurable color buttons @@ -119,3 +119,8 @@ Version 0.0.6 highlighted - Added screen resolution icon in DisplayReplay - Changed Makefile to avoid warnings with newer ImageMagick versions + +Version 0.0.7: +- Width of narrow menus (main, schedule, channel, recordings, settings) + individually configurable +- Display of free disk space in recordings menu header diff --git a/displaymenu.c b/displaymenu.c index a00d9c4..b13e36c 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -221,6 +221,10 @@ void cNopacityDisplayMenu::SetTitle(const char *Title) { menuView->ShowHeaderLogo(false); left += menuView->ShowHeaderIconChannelLogo(Title); break; + case mcRecording: + title = cString::sprintf("%s (%s)", Title, *cVideoDiskUsage::String()); + left += menuView->DrawHeaderIcon(MenuCategory()); + break; default: menuView->ShowHeaderLogo(false); left += menuView->DrawHeaderIcon(MenuCategory()); |