commit
0a8477a888
1
.mailmap
1
.mailmap
|
@ -13,3 +13,4 @@ csoft2k <csoft2k@hotmail.com>
|
||||||
Sergio Pulgarin <sergio.pulgarin@gmail.com>
|
Sergio Pulgarin <sergio.pulgarin@gmail.com>
|
||||||
reck31 <rakesh.gunduka@gmail.com>
|
reck31 <rakesh.gunduka@gmail.com>
|
||||||
Alex Debiasio <alex.debiasio@thinkin.io> <alex.debiasio@studenti.unitn.it>
|
Alex Debiasio <alex.debiasio@thinkin.io> <alex.debiasio@studenti.unitn.it>
|
||||||
|
Maximilian Wagenbach <maximilian.wagenbach@native-instruments.de>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
GENLIST=$(git shortlog -s -n | cut -f2 | sort -f)
|
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"
|
AUTHORSFILE="$(dirname $0)/../AUTHORS"
|
||||||
TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile"
|
TEMPAUTHORSFILE="/tmp/python-escpos-authorsfile"
|
||||||
|
|
||||||
|
@ -12,7 +13,9 @@ if [ "$#" -eq 1 ]
|
||||||
echo "\nNew authorsfile:\n"
|
echo "\nNew authorsfile:\n"
|
||||||
cat $TEMPAUTHORSFILE
|
cat $TEMPAUTHORSFILE
|
||||||
echo "\nUsing diff on files...\n"
|
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
|
else
|
||||||
echo "$GENLIST">$AUTHORSFILE
|
echo "$GENLIST">$AUTHORSFILE
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -661,8 +661,6 @@ class Escpos(object):
|
||||||
be attempted. Note however, that not all models can do a partial cut. See the documentation of
|
be attempted. Note however, that not all models can do a partial cut. See the documentation of
|
||||||
your printer for details.
|
your printer for details.
|
||||||
|
|
||||||
.. todo:: Check this function on TM-T88II.
|
|
||||||
|
|
||||||
:param mode: set to 'PART' for a partial cut. default: 'FULL'
|
:param mode: set to 'PART' for a partial cut. default: 'FULL'
|
||||||
:param feed: print and feed before cutting. default: true
|
:param feed: print and feed before cutting. default: true
|
||||||
:raises ValueError: if mode not in ('FULL', 'PART')
|
:raises ValueError: if mode not in ('FULL', 'PART')
|
||||||
|
|
Loading…
Reference in New Issue