mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the version numbers of all plugins to reflect the recent Makefile changes
This commit is contained in:
parent
3649145acb
commit
70c4a2d5d5
1
HISTORY
1
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.
|
||||
|
@ -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.
|
||||
|
@ -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 <getopt.h>
|
||||
#include <vdr/plugin.h>
|
||||
#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 {
|
||||
|
@ -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.
|
||||
|
@ -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 <vdr/epg.h>
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
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 --------------------------------------------------------
|
||||
|
@ -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.
|
||||
|
@ -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 <getopt.h>
|
||||
@ -12,7 +12,7 @@
|
||||
#include <vdr/interface.h>
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
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");
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 <vdr/osd.h>
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
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";
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 <getopt.h>
|
||||
@ -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");
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 <getopt.h>
|
||||
@ -16,7 +16,7 @@
|
||||
#include <vdr/thread.h>
|
||||
#include <vdr/tools.h>
|
||||
|
||||
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
|
||||
|
@ -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.
|
||||
|
@ -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 <stdlib.h>
|
||||
#include <vdr/interface.h>
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
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";
|
||||
|
||||
|
@ -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 <stdlib.h>
|
||||
#include <vdr/interface.h>
|
||||
#include <vdr/plugin.h>
|
||||
|
||||
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 {
|
||||
|
@ -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.
|
||||
|
@ -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 <ncurses.h>
|
||||
@ -12,7 +12,7 @@
|
||||
#include <vdr/skins.h>
|
||||
#include <vdr/videodir.h>
|
||||
|
||||
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;
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 <vdr/plugin.h>
|
||||
#include <vdr/status.h>
|
||||
|
||||
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;
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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 <vdr/plugin.h>
|
||||
|
||||
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 {
|
||||
|
Loading…
Reference in New Issue
Block a user