diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-04-28 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-04-28 18:00:00 +0200 |
commit | 56e5836b54ab1a7f5ad5b067e867a0c9392c5e5b (patch) | |
tree | b00c8d961eb4e208d05b7486bf25998c54f6e72f /HISTORY | |
parent | 880c3ddb94c09d6cca411363ed6f981d4e150fd2 (diff) | |
download | vdr-patch-lnbsharing-56e5836b54ab1a7f5ad5b067e867a0c9392c5e5b.tar.gz vdr-patch-lnbsharing-56e5836b54ab1a7f5ad5b067e867a0c9392c5e5b.tar.bz2 |
Version 1.3.49vdr-1.3.49
- Fixed initializing 'noapiv' in the Makefile (reported by Ronny Kornexl).
- Fixed extracting APIVERSION to work with older versions of 'sed' (reported by
Oliver Endriss; thanks also to Udo Richter for a shorter version of the 'sed'
expression).
- Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss).
- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle).
- Updated the Italian OSD texts (thanks to Nino Gerbino).
- Added a note about adding 'INCLUDES += -I$(DVBDIR)/include' to an existing
Make.config (problem reported by Markus Ehrnsperger).
- Fixed handling the cPluginManager::Active() result when pressing the "Power" key
(reported by Werner Färber).
- Added a hint about commenting out the line '#define USE_FADVISE' in tools.c in
case of problems with replaying in fast forward mode if the video directory is
mounted via a Samba share (reported by Andy Grobb).
- Changed the "Really restart?" prompt in the call to cPluginManager::Active() in
menu.c to "restart anyway?" (suggested by Rolf Ahrenberg).
- Removed the obsolete "'1' for encrypted radio channels" part from the description
of the VPID in vdr.5 (reported by Alexander Hans).
- Fixed tuning to the channel of a VPS timer if the device is the actual device.
Diffstat (limited to 'HISTORY')
-rw-r--r-- | HISTORY | 35 |
1 files changed, 32 insertions, 3 deletions
@@ -4532,8 +4532,15 @@ Video Disk Recorder Revision History files as VDR itself, the definition of DVBDIR has been removed from the VDR Makefile. If you are using a driver version that has its header files at a location other than /usr/include/linux/dvb, you can define DVBDIR in the Make.config - file (see also INSTALL). Any reference to DVBDIR should be removed from all - plugins' Makefiles, like this: + file (see also INSTALL). Note that if you already have a Make.config file of your + own, you should add the lines + + ifdef DVBDIR + INCLUDES += -I$(DVBDIR)/include + endif + + to its end, as in the new Make.config.template. + Any reference to DVBDIR should be removed from all plugins' Makefiles, like this: ------------------------------------------------------------ --- PLUGINS/src/hello/Makefile 2005/11/11 13:20:14 1.10 @@ -4580,7 +4587,7 @@ Video Disk Recorder Revision History +### The version number of VDR's plugin API (taken from VDR's "config.h"): -VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') - +APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') + +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: @@ -4648,3 +4655,25 @@ Video Disk Recorder Revision History that the 'z' modifier should be used here). - Ignoring k_Repeat when deciding whether the same key has been pressed in string input fields (based on a patch from Marko Mäkelä). + +2006-04-28: Version 1.3.49 + +- Fixed initializing 'noapiv' in the Makefile (reported by Ronny Kornexl). +- Fixed extracting APIVERSION to work with older versions of 'sed' (reported by + Oliver Endriss; thanks also to Udo Richter for a shorter version of the 'sed' + expression). +- Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss). +- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle). +- Updated the Italian OSD texts (thanks to Nino Gerbino). +- Added a note about adding 'INCLUDES += -I$(DVBDIR)/include' to an existing + Make.config (problem reported by Markus Ehrnsperger). +- Fixed handling the cPluginManager::Active() result when pressing the "Power" key + (reported by Werner Färber). +- Added a hint about commenting out the line '#define USE_FADVISE' in tools.c in + case of problems with replaying in fast forward mode if the video directory is + mounted via a Samba share (reported by Andy Grobb). +- Changed the "Really restart?" prompt in the call to cPluginManager::Active() in + menu.c to "restart anyway?" (suggested by Rolf Ahrenberg). +- Removed the obsolete "'1' for encrypted radio channels" part from the description + of the VPID in vdr.5 (reported by Alexander Hans). +- Fixed tuning to the channel of a VPS timer if the device is the actual device. |