diff options
| author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-22 19:52:34 +0000 |
|---|---|---|
| committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-22 19:52:34 +0000 |
| commit | c5dfe5834603465b7597f7828400f0d23b3bed73 (patch) | |
| tree | ec821f426b2ea6cc097ba56b15dde300992fc32b /tools/release | |
| parent | 0ec2b0c38738bee536a4f94da5beb5638fc37f9d (diff) | |
| download | vdr-plugin-menuorg-c5dfe5834603465b7597f7828400f0d23b3bed73.tar.gz vdr-plugin-menuorg-c5dfe5834603465b7597f7828400f0d23b3bed73.tar.bz2 | |
- Using gettext / vdr 1.5.18 now
- remember cursor position when entering submenu
- updated copyright header
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@6965 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'tools/release')
| -rwxr-xr-x | tools/release | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/release b/tools/release new file mode 100755 index 0000000..d7c8e09 --- /dev/null +++ b/tools/release @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +# clean +make clean + +make update-po + +if [ -n "`svn st`" ] ; then + echo "uncommited changes !!!" + exit 1 +fi + +# make distribution tarball +make dist + +# read version +VERSION=`grep 'static const char VERSION\[\] =' src/version.h | awk '{ print $6 }' | sed -e 's/[";]//g'` + +# tag version +echo "Tagging: $VERSION" +svn cp -m "Releasing Menuorg $VERSION" svn+e-tobi://e-tobi.net/menuorg/trunk \ + "svn+e-tobi://e-tobi.net/menuorg/tags/$VERSION" |
