From c545f6b4cfc4c8fe604eb216fb1d8c86550e74ca Mon Sep 17 00:00:00 2001 From: louis Date: Tue, 23 Jul 2013 20:06:57 +0200 Subject: [PATCH] Version 1.0.0 --- HISTORY | 3 +++ recmenus.c | 4 ++-- tvguide.c | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index ce17278..4f96383 100644 --- a/HISTORY +++ b/HISTORY @@ -44,6 +44,7 @@ VDR Plugin 'tvguide' Revision History - Setup option to hide schedules time display in horizontal EPG grids 2013-07-08: Version 0.0.6 + - added frame around scaled video picture - added theme "keep it simple" (thanks @saman) - display of additional EPG pictures in detailed epg view @@ -60,3 +61,5 @@ VDR Plugin 'tvguide' Revision History - Added Setup Option to define if tvguide closes after channel switching - Added remotetimers support (thanks @Saman for providing a patch) - Pimped timeline + +2013-07-23: Version 1.0.0 diff --git a/recmenus.c b/recmenus.c index 0676240..c321fc2 100644 --- a/recmenus.c +++ b/recmenus.c @@ -212,7 +212,7 @@ public: if (numConflicts == 1) { text = cString::sprintf("%s %s %s", tr("One"), tr("Timer Conflict"), tr("detected")); } else { - text = cString::sprintf("%d %s %s", conflicts.size(), tr("Timer Conflicts"), tr("detected")); + text = cString::sprintf("%d %s %s", (int)conflicts.size(), tr("Timer Conflicts"), tr("detected")); } cRecMenuItemInfo *infoItem = new cRecMenuItemInfo(*text); @@ -1027,4 +1027,4 @@ public: }; virtual ~cRecMenuRecordingSearchNotFound(void) {}; -}; \ No newline at end of file +}; diff --git a/tvguide.c b/tvguide.c index 4a79fbd..3b56f55 100644 --- a/tvguide.c +++ b/tvguide.c @@ -21,7 +21,7 @@ -static const char *VERSION = "0.0.6"; +static const char *VERSION = "1.0.0"; static const char *DESCRIPTION = "A fancy 2d EPG Viewer"; static const char *MAINMENUENTRY = "Tvguide";