Version 1.0.0

This commit is contained in:
louis 2013-07-23 20:06:57 +02:00
parent a17b78838e
commit c545f6b4cf
3 changed files with 6 additions and 3 deletions

View File

@ -44,6 +44,7 @@ VDR Plugin 'tvguide' Revision History
- Setup option to hide schedules time display in horizontal EPG grids - Setup option to hide schedules time display in horizontal EPG grids
2013-07-08: Version 0.0.6 2013-07-08: Version 0.0.6
- added frame around scaled video picture - added frame around scaled video picture
- added theme "keep it simple" (thanks @saman) - added theme "keep it simple" (thanks @saman)
- display of additional EPG pictures in detailed epg view - 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 Setup Option to define if tvguide closes after channel switching
- Added remotetimers support (thanks @Saman for providing a patch) - Added remotetimers support (thanks @Saman for providing a patch)
- Pimped timeline - Pimped timeline
2013-07-23: Version 1.0.0

View File

@ -212,7 +212,7 @@ public:
if (numConflicts == 1) { if (numConflicts == 1) {
text = cString::sprintf("%s %s %s", tr("One"), tr("Timer Conflict"), tr("detected")); text = cString::sprintf("%s %s %s", tr("One"), tr("Timer Conflict"), tr("detected"));
} else { } 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); cRecMenuItemInfo *infoItem = new cRecMenuItemInfo(*text);

View File

@ -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 *DESCRIPTION = "A fancy 2d EPG Viewer";
static const char *MAINMENUENTRY = "Tvguide"; static const char *MAINMENUENTRY = "Tvguide";