diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-02-23 21:38:22 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-02-23 21:38:22 +0100 |
commit | 4b0546e6215d96dbc56822433adece8a0f048195 (patch) | |
tree | 2ed9a47548193d6881aeab921cf67e9a0176a55a | |
parent | 6dc92756409821f678037b69db697c9244d75f5c (diff) | |
download | vdr-plugin-markad-4b0546e6215d96dbc56822433adece8a0f048195.tar.gz vdr-plugin-markad-4b0546e6215d96dbc56822433adece8a0f048195.tar.bz2 |
Updated HISTORYv0.1.0
Updated version
Added dist directory
-rw-r--r-- | HISTORY | 8 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | plugin/dist/markad.sh | 3 | ||||
-rw-r--r-- | version.h | 2 |
4 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,13 @@ VDR Plugin 'markad' Revision History ---------------------------------- +2011-02-23: Version 0.1.0 + +- New demuxer +- New mark handling +- Removed "Backupmarks" option +- Added more logos +- Fixed some bugs reported from users + 2011-02-13: Version 0.0.9 - Removed "scan AC3 always" option, added "correct info file" @@ -23,10 +23,12 @@ dist: @mkdir $(TMPDIR)/$(ARCHIVE) @mkdir $(TMPDIR)/$(ARCHIVE)/plugin @mkdir $(TMPDIR)/$(ARCHIVE)/plugin/po + @mkdir $(TMPDIR)/$(ARCHIVE)/plugin/dist @mkdir $(TMPDIR)/$(ARCHIVE)/command @mkdir $(TMPDIR)/$(ARCHIVE)/command/po @mkdir $(TMPDIR)/$(ARCHIVE)/command/logos @cp -a plugin/*.cpp plugin/*.h plugin/Makefile $(TMPDIR)/$(ARCHIVE)/plugin + @cp -a plugin/dist/* $(TMPDIR)/$(ARCHIVE)/plugin/dist @cp -a plugin/po/*.po $(TMPDIR)/$(ARCHIVE)/plugin/po @cp -a command/*.cpp command/*.h command/Makefile $(TMPDIR)/$(ARCHIVE)/command @cp -a command/logos/*.pgm $(TMPDIR)/$(ARCHIVE)/command/logos diff --git a/plugin/dist/markad.sh b/plugin/dist/markad.sh new file mode 100755 index 0000000..834b1b3 --- /dev/null +++ b/plugin/dist/markad.sh @@ -0,0 +1,3 @@ +at now <<EOF +/usr/bin/svdrpsend plug markad MARK $1 +EOF @@ -8,6 +8,6 @@ #ifndef __version_h_ #define __version_h_ -static const char *VERSION = "0.1.0pre"; +static const char *VERSION = "0.1.0"; #endif |