diff --git a/PLUGINS/src/status/HISTORY b/PLUGINS/src/status/HISTORY index f68a25f8..e0ce9fcf 100644 --- a/PLUGINS/src/status/HISTORY +++ b/PLUGINS/src/status/HISTORY @@ -76,3 +76,7 @@ VDR Plugin 'status' Revision History 2021-12-27: Version 2.6.0 - Official release. + +2025-01-16: Version 2.6.1 + +- Added cStatus::OsdItem2(). diff --git a/PLUGINS/src/status/status.c b/PLUGINS/src/status/status.c index e1f80e84..9ac2e5a7 100644 --- a/PLUGINS/src/status/status.c +++ b/PLUGINS/src/status/status.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: status.c 4.1 2018/04/10 13:01:03 kls Exp $ + * $Id: status.c 5.1 2025/01/16 10:23:12 kls Exp $ */ #include #include -static const char *VERSION = "2.4.0"; +static const char *VERSION = "2.6.1"; static const char *DESCRIPTION = "Status monitor test"; static const char *MAINMENUENTRY = NULL; @@ -29,7 +29,7 @@ protected: virtual void OsdTitle(const char *Title); virtual void OsdStatusMessage(const char *Message); virtual void OsdHelpKeys(const char *Red, const char *Green, const char *Yellow, const char *Blue); - virtual void OsdItem(const char *Text, int Index); + virtual void OsdItem2(const char *Text, int Index, bool Selectable); virtual void OsdCurrentItem(const char *Text); virtual void OsdTextItem(const char *Text, bool Scroll); virtual void OsdChannel(const char *Text); @@ -96,9 +96,9 @@ void cStatusTest::OsdHelpKeys(const char *Red, const char *Green, const char *Ye dsyslog("status: cStatusTest::OsdHelpKeys %s - %s - %s - %s", Red, Green, Yellow, Blue); } -void cStatusTest::OsdItem(const char *Text, int Index) +void cStatusTest::OsdItem2(const char *Text, int Index, bool Selected) { - //dsyslog("status: cStatusTest::OsdItem %s %d", Text, Index); + //dsyslog("status: cStatusTest::OsdItem2 %s %d %d", Text, Index, Selected); } void cStatusTest::OsdCurrentItem(const char *Text)