|
@ -3,13 +3,18 @@ |
|
|
# Helper script to get the list of new songs added since the last version |
|
|
# Helper script to get the list of new songs added since the last version |
|
|
# The output is supposed to be copy/pasted into the NEWS item. |
|
|
# The output is supposed to be copy/pasted into the NEWS item. |
|
|
|
|
|
|
|
|
|
|
|
GREP="$GREP_OPTIONS" |
|
|
|
|
|
export GREP_OPTIONS="" |
|
|
|
|
|
|
|
|
if [ $# -eq 1 ] |
|
|
if [ $# -eq 1 ] |
|
|
then |
|
|
then |
|
|
VERSION=$1 |
|
|
VERSION=$1 |
|
|
else |
|
|
else |
|
|
# Get current version |
|
|
# Get current version |
|
|
VERSION=`git tag | tail -n1` |
|
|
VERSION=`git tag | grep patacrep | tail -n1` |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
# Make new songs list by authors |
|
|
# Make new songs list by authors |
|
|
git shortlog $VERSION..master | egrep '^([^ ].*|.*Add song.*)' | sed 's/Add song.*://' | sed 's/\.$//' | sed 's/ (.*)//' | sed 's/\s\s\s*/ /' |
|
|
git shortlog $VERSION..master | egrep '^([^ ].*|.*Add song.*)' | sed 's/Add song.*://' | sed 's/\.$//' | sed 's/ (.*)//' | sed 's/\s\s\s*/ /' |
|
|
|
|
|
|
|
|
|
|
|
export GREP_OPTIONS="$GREP" |
|
|