From be6b53850a8d671e69494d0217a67282d57bfa91 Mon Sep 17 00:00:00 2001 From: Tony Houghton Date: Fri, 15 Jan 2010 20:29:27 +0000 Subject: [PATCH] Version 0.1.3: Fixed install.py. Tarball is Debian-friendly and built by a script. --- AppInfo.xml | 2 +- Help/README | 9 +++++---- mkdist.sh | 12 ++++++++++++ 3 files changed, 18 insertions(+), 5 deletions(-) create mode 100755 mkdist.sh diff --git a/AppInfo.xml b/AppInfo.xml index ca96b6f..5a132b0 100644 --- a/AppInfo.xml +++ b/AppInfo.xml @@ -3,7 +3,7 @@ System Information Bars Show CPU load etc in bars on the panel - 0.1.2 (02-Jan-2010) + 0.1.3 (15-Jan-2010) Tony Houghton GNU General Public License http://www.realh.co.uk diff --git a/Help/README b/Help/README index 66ddf6a..a5e3d32 100644 --- a/Help/README +++ b/Help/README @@ -1,7 +1,7 @@ SysBars ~~~~~~~ -(c) 2008, 2009 Tony Houghton +(c) 2008-2010 Tony Houghton h@realh.co.uk http://www.realh.co.uk @@ -30,9 +30,10 @@ recent 2.6 series kernel, but SysBars is designed to be extensible by adding "plugins" for new types of resource to monitor and "platform" extensions to support systems other than Linux. -To use it in ROX, just drag the appdir to your panel. To use it in GNOME run -install.py (requires root privileges) and it should become available in the -list of applets to add to your panel. +To use it in ROX, just drag the appdir (which you may wish to rename) to your +panel. To use it in GNOME run install.py (requires root privileges) and it +should become available in the list of applets to add to your panel next time +you log in. Locations --------- diff --git a/mkdist.sh b/mkdist.sh new file mode 100755 index 0000000..0312833 --- /dev/null +++ b/mkdist.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +cwd=`pwd` +cd "$(dirname $0)" +git log > Help/Changes +VERSION=$(grep '' AppInfo.xml | sed 's/^[^>]*>//;s/ .*//') +REL_DIR=sysbars-${VERSION} +tar cvfz "${cwd}/${REL_DIR}.tar.gz" --transform "s|^\.|$REL_DIR|" \ + --exclude-vcs --exclude=debian --exclude='*.pyc' --exclude=procstat.py \ + --exclude='*.tar.*' \ + . + -- 2.11.4.GIT