diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | common.c | 4 |
3 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,8 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +2008-03-31: Version 0.3.4 + - added possibility to pass parameter to externremux.sh (thanks to Rolf Ahrenberg) - use HTTP host header in absolute URLs for DNAT / reverse proxy support @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.11 2008/03/28 15:11:40 schmirl Exp $ +# $Id: Makefile,v 1.12 2008/03/31 10:34:26 schmirl Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -130,7 +130,7 @@ dist: clean @-rm -rf $(TMPDIR)/$(ARCHIVE) @mkdir $(TMPDIR)/$(ARCHIVE) @cp -a * $(TMPDIR)/$(ARCHIVE) - @tar czf $(PACKAGE).tgz --exclude SCCS -C $(TMPDIR) $(ARCHIVE) + @tar czf $(PACKAGE).tgz --exclude CVS -C $(TMPDIR) $(ARCHIVE) @-rm -rf $(TMPDIR)/$(ARCHIVE) @echo Distribution package created as $(PACKAGE).tgz @@ -1,5 +1,5 @@ /* - * $Id: common.c,v 1.5 2007/09/21 11:55:56 schmirl Exp $ + * $Id: common.c,v 1.6 2008/03/31 10:34:26 schmirl Exp $ */ #include <vdr/channels.h> @@ -11,7 +11,7 @@ using namespace std; -const char *VERSION = "0.3.3-pre3-geni"; +const char *VERSION = "0.3.4-CVS"; const char *StreamTypes[st_Count] = { "TS", |