mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Version 1.0.0
This commit is contained in:
parent
a17b78838e
commit
c545f6b4cf
3
HISTORY
3
HISTORY
@ -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
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
@ -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";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user