diff --git a/HISTORY b/HISTORY index 5794c359..d1591723 100644 --- a/HISTORY +++ b/HISTORY @@ -7464,3 +7464,4 @@ Video Disk Recorder Revision History - Making sure that plugins include the VDR header files from the actual VDR source directory when doing "make plugins" (suggested by Christoper Reimer). +- Increased the version numbers of all plugins to reflect the recent Makefile changes. diff --git a/PLUGINS/src/dvbsddevice/HISTORY b/PLUGINS/src/dvbsddevice/HISTORY index 676dd6fc..e183ab68 100644 --- a/PLUGINS/src/dvbsddevice/HISTORY +++ b/PLUGINS/src/dvbsddevice/HISTORY @@ -24,8 +24,12 @@ VDR Plugin 'dvbsddevice' Revision History - Added option --outputonly to use the device only for output (thanks to Udo Richter). -2012-03-07: Version 0.06 +2012-03-07: Version 0.0.6 - Removed the call to EITScanner.UsesDevice(this) from dvbsddevice.c, because the code following these calls is only executed if LiveView is true, which is never the case when the EITScanner switches to a channel. + +2012-12-27: Version 0.0.7 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/dvbsddevice/dvbsddevice.c b/PLUGINS/src/dvbsddevice/dvbsddevice.c index 7f1dde48..9db81eec 100644 --- a/PLUGINS/src/dvbsddevice/dvbsddevice.c +++ b/PLUGINS/src/dvbsddevice/dvbsddevice.c @@ -3,14 +3,14 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: dvbsddevice.c 1.6 2012/03/07 13:58:08 kls Exp $ + * $Id: dvbsddevice.c 1.7 2012/12/27 10:32:23 kls Exp $ */ #include #include #include "dvbsdffdevice.h" -static const char *VERSION = "0.0.6"; +static const char *VERSION = "0.0.7"; static const char *DESCRIPTION = "SD Full Featured DVB device"; class cPluginDvbsddevice : public cPlugin { diff --git a/PLUGINS/src/epgtableid0/HISTORY b/PLUGINS/src/epgtableid0/HISTORY index 7f732add..03366bd5 100644 --- a/PLUGINS/src/epgtableid0/HISTORY +++ b/PLUGINS/src/epgtableid0/HISTORY @@ -4,3 +4,7 @@ VDR Plugin 'epgtableid0' Revision History 2012-03-10: Version 0.0.1 - Initial revision. + +2012-12-27: Version 0.0.2 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/epgtableid0/epgtableid0.c b/PLUGINS/src/epgtableid0/epgtableid0.c index d400b48c..b2697c2b 100644 --- a/PLUGINS/src/epgtableid0/epgtableid0.c +++ b/PLUGINS/src/epgtableid0/epgtableid0.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: epgtableid0.c 1.1 2012/03/10 15:10:43 kls Exp $ + * $Id: epgtableid0.c 1.2 2012/12/27 10:32:52 kls Exp $ */ #include #include -static const char *VERSION = "0.0.1"; +static const char *VERSION = "0.0.2"; static const char *DESCRIPTION = "EPG handler for events with table id 0x00"; // --- cTable0Handler -------------------------------------------------------- diff --git a/PLUGINS/src/hello/HISTORY b/PLUGINS/src/hello/HISTORY index 3b30315a..0bc45767 100644 --- a/PLUGINS/src/hello/HISTORY +++ b/PLUGINS/src/hello/HISTORY @@ -74,3 +74,7 @@ VDR Plugin 'hello' Revision History 2010-02-28: Version 0.2.5 - Added Lithuanian language translations (thanks to Valdemaras Pipiras). + +2012-12-27: Version 0.2.6 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/hello/hello.c b/PLUGINS/src/hello/hello.c index b7d141d7..5ec3b68b 100644 --- a/PLUGINS/src/hello/hello.c +++ b/PLUGINS/src/hello/hello.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: hello.c 2.3 2010/02/28 12:49:28 kls Exp $ + * $Id: hello.c 2.4 2012/12/27 10:35:04 kls Exp $ */ #include @@ -12,7 +12,7 @@ #include #include -static const char *VERSION = "0.2.5"; +static const char *VERSION = "0.2.6"; static const char *DESCRIPTION = trNOOP("A friendly greeting"); static const char *MAINMENUENTRY = trNOOP("Hello"); diff --git a/PLUGINS/src/osddemo/HISTORY b/PLUGINS/src/osddemo/HISTORY index 5db6bef2..7ffad135 100644 --- a/PLUGINS/src/osddemo/HISTORY +++ b/PLUGINS/src/osddemo/HISTORY @@ -38,3 +38,7 @@ VDR Plugin 'osddemo' Revision History 2012-03-13: Version 0.2.3 - No longer using GetFont() (which is not thread safe) in the 'osddemo' plugin, + +2012-12-27: Version 0.2.4 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/osddemo/osddemo.c b/PLUGINS/src/osddemo/osddemo.c index d4da3d85..5184ed8f 100644 --- a/PLUGINS/src/osddemo/osddemo.c +++ b/PLUGINS/src/osddemo/osddemo.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: osddemo.c 2.6 2012/03/13 15:17:33 kls Exp $ + * $Id: osddemo.c 2.7 2012/12/27 10:36:21 kls Exp $ */ #include #include -static const char *VERSION = "0.2.3"; +static const char *VERSION = "0.2.4"; static const char *DESCRIPTION = "Demo of arbitrary OSD setup"; static const char *MAINMENUENTRY = "Osd Demo"; diff --git a/PLUGINS/src/pictures/HISTORY b/PLUGINS/src/pictures/HISTORY index 70f61456..a75cae96 100644 --- a/PLUGINS/src/pictures/HISTORY +++ b/PLUGINS/src/pictures/HISTORY @@ -72,6 +72,10 @@ VDR Plugin 'pictures' Revision History - Removed an obsolete command line option. -2012-04-2r8 Version 0.1.3 +2012-04-28: Version 0.1.3 - Added cPictureControl::GetHeader(). + +2012-12-27: Version 0.1.4 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/pictures/pictures.c b/PLUGINS/src/pictures/pictures.c index 77df0d9a..25e8be03 100644 --- a/PLUGINS/src/pictures/pictures.c +++ b/PLUGINS/src/pictures/pictures.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: pictures.c 2.6 2012/04/28 11:58:42 kls Exp $ + * $Id: pictures.c 2.7 2012/12/27 10:37:07 kls Exp $ */ #include @@ -11,7 +11,7 @@ #include "menu.h" #include "player.h" -static const char *VERSION = "0.1.3"; +static const char *VERSION = "0.1.4"; static const char *DESCRIPTION = trNOOP("A simple picture viewer"); static const char *MAINMENUENTRY = trNOOP("Pictures"); diff --git a/PLUGINS/src/rcu/HISTORY b/PLUGINS/src/rcu/HISTORY index 87b9413e..4d03e49d 100644 --- a/PLUGINS/src/rcu/HISTORY +++ b/PLUGINS/src/rcu/HISTORY @@ -8,3 +8,7 @@ VDR Plugin 'rcu' Revision History 2012-03-07: Version 0.0.2 - Added new parameter LiveView to ChannelSwitch(). + +2012-12-27: Version 0.0.3 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/rcu/rcu.c b/PLUGINS/src/rcu/rcu.c index 79f46122..dab7bba1 100644 --- a/PLUGINS/src/rcu/rcu.c +++ b/PLUGINS/src/rcu/rcu.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: rcu.c 1.2 2012/03/07 14:22:44 kls Exp $ + * $Id: rcu.c 1.3 2012/12/27 10:37:31 kls Exp $ */ #include @@ -16,7 +16,7 @@ #include #include -static const char *VERSION = "0.0.2"; +static const char *VERSION = "0.0.3"; static const char *DESCRIPTION = "Remote Control Unit"; #define REPEATLIMIT 150 // ms diff --git a/PLUGINS/src/servicedemo/HISTORY b/PLUGINS/src/servicedemo/HISTORY index 76d95a5c..4d368dfe 100644 --- a/PLUGINS/src/servicedemo/HISTORY +++ b/PLUGINS/src/servicedemo/HISTORY @@ -9,3 +9,7 @@ VDR Plugin 'servicedemo' Revision History - Moved the "all" target in the Makefile before the "Implicit rules", so that a plain "make" will compile everything. + +2012-12-27: Version 0.1.3 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/servicedemo/svccli.c b/PLUGINS/src/servicedemo/svccli.c index 6e812b41..171b30c0 100644 --- a/PLUGINS/src/servicedemo/svccli.c +++ b/PLUGINS/src/servicedemo/svccli.c @@ -3,14 +3,14 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: svccli.c 1.2 2007/08/15 13:18:08 kls Exp $ + * $Id: svccli.c 2.1 2012/12/27 10:37:57 kls Exp $ */ #include #include #include -static const char *VERSION = "0.1.2"; +static const char *VERSION = "0.1.3"; static const char *DESCRIPTION = "Service demo client"; static const char *MAINMENUENTRY = "Service demo"; diff --git a/PLUGINS/src/servicedemo/svcsvr.c b/PLUGINS/src/servicedemo/svcsvr.c index 9ccb73ce..f7b2548b 100644 --- a/PLUGINS/src/servicedemo/svcsvr.c +++ b/PLUGINS/src/servicedemo/svcsvr.c @@ -3,14 +3,14 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: svcsvr.c 1.2 2007/08/15 13:18:59 kls Exp $ + * $Id: svcsvr.c 2.1 2012/12/27 10:38:19 kls Exp $ */ #include #include #include -static const char *VERSION = "0.1.2"; +static const char *VERSION = "0.1.3"; static const char *DESCRIPTION = "Service demo server"; class cPluginSvcSvr : public cPlugin { diff --git a/PLUGINS/src/skincurses/HISTORY b/PLUGINS/src/skincurses/HISTORY index deb011b5..c8117a35 100644 --- a/PLUGINS/src/skincurses/HISTORY +++ b/PLUGINS/src/skincurses/HISTORY @@ -101,3 +101,7 @@ VDR Plugin 'skincurses' Revision History - Now displaying disk usage in the title of the main and "Recordings" menu, which is no longer done by the VDR core. + +2012-12-27: Version 0.1.13 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/skincurses/skincurses.c b/PLUGINS/src/skincurses/skincurses.c index 587d0b97..5d4ee48a 100644 --- a/PLUGINS/src/skincurses/skincurses.c +++ b/PLUGINS/src/skincurses/skincurses.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: skincurses.c 2.9 2012/04/23 08:53:13 kls Exp $ + * $Id: skincurses.c 2.10 2012/12/27 10:38:43 kls Exp $ */ #include @@ -12,7 +12,7 @@ #include #include -static const char *VERSION = "0.1.12"; +static const char *VERSION = "0.1.13"; static const char *DESCRIPTION = trNOOP("A text only skin"); static const char *MAINMENUENTRY = NULL; diff --git a/PLUGINS/src/status/HISTORY b/PLUGINS/src/status/HISTORY index 01af66a8..80b6fd59 100644 --- a/PLUGINS/src/status/HISTORY +++ b/PLUGINS/src/status/HISTORY @@ -48,3 +48,7 @@ VDR Plugin 'status' Revision History 2012-03-11: Version 0.3.1 - Added new parameter LiveView to ChannelSwitch() (reported by Udo Richter). + +2012-12-27: Version 0.3.2 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/status/status.c b/PLUGINS/src/status/status.c index e27fa5d9..fdf1104c 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 2.1 2012/03/11 14:48:37 kls Exp $ + * $Id: status.c 2.2 2012/12/27 10:39:26 kls Exp $ */ #include #include -static const char *VERSION = "0.3.1"; +static const char *VERSION = "0.3.2"; static const char *DESCRIPTION = "Status monitor test"; static const char *MAINMENUENTRY = NULL; diff --git a/PLUGINS/src/svdrpdemo/HISTORY b/PLUGINS/src/svdrpdemo/HISTORY index 64334684..1771233b 100644 --- a/PLUGINS/src/svdrpdemo/HISTORY +++ b/PLUGINS/src/svdrpdemo/HISTORY @@ -13,3 +13,7 @@ VDR Plugin 'svdrpdemo' Revision History - Moved the "all" target in the Makefile before the "Implicit rules", so that a plain "make" will compile everything. + +2012-12-27: Version 0.0.4 + +- Adapted Makefile to changes introduced in recent VDR versions. diff --git a/PLUGINS/src/svdrpdemo/svdrpdemo.c b/PLUGINS/src/svdrpdemo/svdrpdemo.c index 008d25b0..b47b9d4a 100644 --- a/PLUGINS/src/svdrpdemo/svdrpdemo.c +++ b/PLUGINS/src/svdrpdemo/svdrpdemo.c @@ -3,12 +3,12 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: svdrpdemo.c 1.3 2007/08/15 13:19:57 kls Exp $ + * $Id: svdrpdemo.c 2.1 2012/12/27 10:39:48 kls Exp $ */ #include -static const char *VERSION = "0.0.3"; +static const char *VERSION = "0.0.4"; static const char *DESCRIPTION = "How to add SVDRP support to a plugin"; class cPluginSvdrpdemo : public cPlugin {