From 599dd12e765eac556dd4302b31e2add429c3121e Mon Sep 17 00:00:00 2001 From: louis Date: Sat, 9 Feb 2013 13:39:11 +0100 Subject: Display of free disk space in recordings menu header --- HISTORY | 7 ++++++- displaymenu.c | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 8134842..8790ba8 100644 --- a/HISTORY +++ b/HISTORY @@ -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()); -- cgit v1.2.3