Increased the version numbers of all plugins to reflect the recent Makefile changes

This commit is contained in:
Klaus Schmidinger
2012-12-27 10:39:48 +01:00
parent 3649145acb
commit 70c4a2d5d5
22 changed files with 65 additions and 24 deletions

View File

@@ -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.

View File

@@ -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";

View File

@@ -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 {