mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed some spelling errors in 'newplugin'
This commit is contained in:
parent
2ac9030e65
commit
32c689258a
@ -1659,6 +1659,7 @@ Ville Skytt
|
|||||||
for reporting that there are places where ntohs() is assigned to different types
|
for reporting that there are places where ntohs() is assigned to different types
|
||||||
for adapting cThread::ThreadId() to recent kernels
|
for adapting cThread::ThreadId() to recent kernels
|
||||||
for some improvements to the man pages
|
for some improvements to the man pages
|
||||||
|
for fixing some spelling errors in 'newplugin'
|
||||||
|
|
||||||
Steffen Beyer <cpunk@reactor.de>
|
Steffen Beyer <cpunk@reactor.de>
|
||||||
for fixing setting the colored button help after deleting a recording in case the next
|
for fixing setting the colored button help after deleting a recording in case the next
|
||||||
|
4
HISTORY
4
HISTORY
@ -5165,3 +5165,7 @@ Video Disk Recorder Revision History
|
|||||||
On its old transponder, the ProSieben/SAT.1 channels also had their EPG data
|
On its old transponder, the ProSieben/SAT.1 channels also had their EPG data
|
||||||
wrongly encoded, but apparently on the new transponder they started broadcasting
|
wrongly encoded, but apparently on the new transponder they started broadcasting
|
||||||
on this month, they got it right.
|
on this month, they got it right.
|
||||||
|
|
||||||
|
2007-04-28: Version 1.5.3
|
||||||
|
|
||||||
|
- Fixed some spelling errors in 'newplugin' (thanks to Ville Skyttä).
|
||||||
|
6
config.h
6
config.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: config.h 1.288 2007/03/03 15:39:05 kls Exp $
|
* $Id: config.h 1.289 2007/04/28 14:47:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -21,8 +21,8 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.5.2"
|
#define VDRVERSION "1.5.3"
|
||||||
#define VDRVERSNUM 10502 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10503 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: newplugin 1.31 2007/02/24 13:23:08 kls Exp $
|
# $Id: newplugin 1.32 2007/04/28 14:46:39 kls Exp $
|
||||||
|
|
||||||
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
|
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ $MAKEFILE = qq
|
|||||||
# The official name of this plugin.
|
# The official name of this plugin.
|
||||||
# This name will be used in the '-P...' option of VDR to load the plugin.
|
# This name will be used in the '-P...' option of VDR to load the plugin.
|
||||||
# By default the main source file also carries this name.
|
# By default the main source file also carries this name.
|
||||||
# IPORTANT: the presence of this macro is important for the Make.config
|
# IMPORTANT: the presence of this macro is important for the Make.config
|
||||||
# file. So it must be defined, even if it is not used here!
|
# file. So it must be defined, even if it is not used here!
|
||||||
#
|
#
|
||||||
PLUGIN = $PLUGIN_NAME
|
PLUGIN = $PLUGIN_NAME
|
||||||
@ -217,7 +217,7 @@ bool cPlugin${PLUGIN_CLASS}::Start(void)
|
|||||||
|
|
||||||
void cPlugin${PLUGIN_CLASS}::Stop(void)
|
void cPlugin${PLUGIN_CLASS}::Stop(void)
|
||||||
{
|
{
|
||||||
// Stop any background activities the plugin shall perform.
|
// Stop any background activities the plugin is performing.
|
||||||
}
|
}
|
||||||
|
|
||||||
void cPlugin${PLUGIN_CLASS}::Housekeeping(void)
|
void cPlugin${PLUGIN_CLASS}::Housekeeping(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user