summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY6
1 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 76cc9c12..f66ec088 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4580,7 +4580,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:
@@ -4652,3 +4652,7 @@ Video Disk Recorder Revision History
2006-04-24: Version 1.4.0
- 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).