updated createrelease

This commit is contained in:
Daniel Marjamäki 2018-03-31 21:03:41 +02:00
parent 7e4dba6a7e
commit 0f4e5f3644
1 changed files with 1 additions and 2 deletions

View File

@ -9,13 +9,12 @@
# lupdate gui.pro
#
# Update copyright year
# git diff c4caee6b1828e3688c88ebacfc8ac90eace8a7ac | grep '^diff --git a/' | sed 's|.* b/||' | xargs sed -i 's/Copyright (C) 2007-201./Copyright (C) 2007-2018/'
# git diff 1.82 | grep '^diff --git a/' | sed 's|.* b/||' | xargs sed -i 's/Copyright (C) 2007-201./Copyright (C) 2007-2018/'
# git diff | grep '^diff --git a/'
#
# Make sure "cppcheck --errorlist" works. For example with:
# make test
# ./cppcheck --errorlist > errlist.xml && xmllint --noout errlist.xml
# ./cppcheck --xml-version=2 --errorlist > errlist.xml && xmllint --noout errlist.xml
#
# Update AUTHORS using output from:
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less