diff --git a/.mailmap b/.mailmap index 4540049..825019f 100644 --- a/.mailmap +++ b/.mailmap @@ -13,3 +13,4 @@ csoft2k Sergio Pulgarin reck31 Alex Debiasio +Maximilian Wagenbach diff --git a/doc/generate_authors.sh b/doc/generate_authors.sh index aefcb6e..bf35156 100755 --- a/doc/generate_authors.sh +++ b/doc/generate_authors.sh @@ -1,6 +1,7 @@ #!/bin/sh GENLIST=$(git shortlog -s -n | cut -f2 | sort -f) +GENLIST_W_MAIL=$(git shortlog -s -e -n | cut -f2 | sort -f) AUTHORSFILE="$(dirname $0)/../AUTHORS" TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile" @@ -12,7 +13,9 @@ if [ "$#" -eq 1 ] echo "\nNew authorsfile:\n" cat $TEMPAUTHORSFILE echo "\nUsing diff on files...\n" - diff -q --from-file $AUTHORSFILE $TEMPAUTHORSFILE + diff --suppress-common-lines -b --from-file $AUTHORSFILE $TEMPAUTHORSFILE + echo "Authors with mail addresses:\n" + echo "$GENLIST_W_MAIL" else echo "$GENLIST">$AUTHORSFILE fi diff --git a/src/escpos/escpos.py b/src/escpos/escpos.py index 05a763d..de4ee09 100644 --- a/src/escpos/escpos.py +++ b/src/escpos/escpos.py @@ -661,8 +661,6 @@ class Escpos(object): be attempted. Note however, that not all models can do a partial cut. See the documentation of your printer for details. - .. todo:: Check this function on TM-T88II. - :param mode: set to 'PART' for a partial cut. default: 'FULL' :param feed: print and feed before cutting. default: true :raises ValueError: if mode not in ('FULL', 'PART')