all repos — tint2 @ 655ea6f06fd999e1637cae4dee6677a92355653b

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Update build script
o9000 o9000
commit

655ea6f06fd999e1637cae4dee6677a92355653b

parent

efe9aadb39507d7d3b76d864051502f27f312c4e

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M get_version.shget_version.sh

@@ -1,5 +1,6 @@

#!/bin/sh +MAJOR=0.12 DIRTY="" git update-index -q --ignore-submodules --refresh

@@ -29,7 +30,7 @@ DIRTY="-dirty"

fi fi -VERSION=$(git describe --exact-match 2>/dev/null || echo "0.11-git$(git show -s --pretty=format:%cI.%h | tr -d ':' | tr -d '-' | tr '.' '-' | sed 's/T[0-9\+]*//g')")$DIRTY +VERSION=$(git describe --exact-match 2>/dev/null || echo "$MAJOR-git$(git show -s --pretty=format:%cI.%h | tr -d ':' | tr -d '-' | tr '.' '-' | sed 's/T[0-9\+]*//g')")$DIRTY echo '#define VERSION_STRING "'$VERSION'"' > version.h echo $VERSION