Christoph Heuel
d50c407edb
Merge branch 'master' into debian/jessie
2015-12-13 14:25:19 +01:00
Christoph Heuel
aa4ffdd21b
Merge branch 'fix/break_output_after_image'
2015-12-13 14:18:44 +01:00
Christoph Heuel
05ea0e929e
Merge branch 'merge/fau-fablab/refac_and_fixes'
2015-12-13 14:11:27 +01:00
Christoph Heuel
2a2ba9a0e2
Debian packaging
...
* Add Debian packaging file
* Use pybuild system to generate Python packages
2015-12-12 21:50:56 +01:00
Christoph Heuel
50b0691e68
Merge remote-tracking branch 'manpaz/master'
2015-12-12 20:30:52 +01:00
Christoph Heuel
06f2e1e731
Merge remote-tracking branch 'faulab/refactoring-and-documentation'
2015-12-12 18:11:58 +01:00
Christoph Heuel
577de10cb4
Merge remote-tracking branch 'faulab/fix-pc1252'
2015-12-12 17:10:05 +01:00
Christoph Heuel
242399ebe2
Merge branch 'merge/upstream/master'
2015-11-29 16:05:48 +01:00
Christoph Heuel
8fd05eb02b
Add flush function
...
* Flushing the file will cause the driver to flush the cache and print
* the whole buffer.
2015-11-29 16:03:56 +01:00
Patrick Kanzler
c1d985eeaf
FIX constant definition for PC1252
...
* fixes #40
* according to the table http://content.epson.de/fileadmin/content/files/RSD/downloads/escpos.pdf
2015-11-28 14:22:54 +01:00
Patrick Kanzler
0dacc35d94
DOC, IMPROVE improve docstrings and add abstract method _raw to Escpos
2015-11-27 23:13:48 +01:00
Patrick Kanzler
8b5798eedf
ADD requirements.txt and requirements to setup.py
2015-11-27 23:13:48 +01:00
Patrick Kanzler
ef8035527c
REFACTOR do not shadow built-ins
2015-11-27 23:13:48 +01:00
Patrick Kanzler
07d8e073ae
REFACTOR style and PEP8, fixes #66
2015-11-27 23:13:35 +01:00
Patrick Kanzler
096445631f
REFACTOR use new-style class for Escpos
2015-11-27 23:13:35 +01:00
Patrick Kanzler
3ea52e52fd
REFACTOR chained boolean expression in escpos
2015-11-27 23:13:35 +01:00
Patrick Kanzler
371d5e78bd
moved .hgignore to .gitignore
2015-11-27 20:53:57 +01:00
Manuel F Martinez
7e3b6ce586
Updated README and documentation
2015-10-27 13:45:15 -07:00
manpaz
4bb94c2662
Merge pull request #59 from zouppen/vertical-length-fix
...
Support for images vertically longer than 256 pixels
2015-10-27 13:36:21 -07:00
manpaz
ef84a5150f
Merge pull request #61 from HarkonenBade/support-for-libusb0
...
Prevent crash when using libusb0 printers
2015-10-07 23:19:46 -07:00
Hark
cd5969e843
Prevent crash when using libusb0 printers
2015-09-04 22:48:58 +01:00
Christoph Heuel
1a1ed5e7fc
Fix mixed tabs/space error
2015-08-27 23:45:15 +02:00
Christoph Heuel
e23ce9bfc2
Merge remote-tracking branch 'origin/master' into merge/upstream/master
2015-08-27 23:37:44 +02:00
Christoph Heuel
546f47edcc
Fix text wrapping error after image
...
* After an image the text wrapping was disturbed.
2015-08-27 23:20:53 +02:00
Joel Lehtonen
3f6528da07
Support for images vertically longer than 256 pixels
2015-08-25 12:17:11 +03:00
Manuel F Martinez
5eaa6f26d0
Added donation message
2015-08-22 13:52:06 -07:00
Manuel F Martinez
37d7f34241
Updated project version
2015-08-22 13:10:13 -07:00
Manuel F Martinez
280000d6ed
Fixed issues with transparent images
2015-08-22 12:43:09 -07:00
manpaz
95082067e4
Merge pull request #53 from ldos/master
...
Extended params for serial printers
2015-07-06 14:44:17 -07:00
ldos
f0f84e1215
Extended params for serial printers
...
Update printer.Serial() constructor and its open() method to extend serial params.
Backwards compatible, no client modifications needed.
2015-07-04 17:23:31 +02:00
Manuel F Martinez
cae02976a3
Updated accordingly to the wiki
2015-06-30 15:09:08 -07:00
Christoph Heuel
25b650c935
Hexlify text
...
* The original code did not convert the received text
2015-06-26 02:12:30 +02:00
Christoph Heuel
6734864a5b
Use unhexlify
...
* for decoding, use unhexlify
2015-06-15 23:08:49 +02:00
Manuel F Martinez
9550ad1068
Fixed License version mismatch
2015-06-10 16:28:27 -07:00
Christoph Heuel
0ef2951c7e
Introduce new direct_image
...
* The direct_image method prints directly from the PIL image object
* The image should be converted to 1 bit before
* The method was derived from png2escpos (https://github.com/twg/png2escpos )
2015-06-10 03:21:52 +02:00
Manuel F Martinez
e623799fd7
Updated setup URLs
2015-06-04 15:55:14 -07:00
Manuel F Martinez
47aa4a96c9
Updated documentation URL to local wiki
2015-06-04 15:20:15 -07:00
Manuel F Martinez
bb329b093b
Updated URL for the documentation
2015-06-04 14:44:02 -07:00
Christoph Heuel
dd228c9fda
Add text wrapping
...
* The base class supports to give columns, how much it should wrapped.
* This is meant for longer text.
* The special instances need to initialize the super class with the
* columns
2015-06-04 14:11:11 +02:00
Christoph Heuel
7da2e32e3c
Integer is needed, not float
...
* The size of the image can only be integer, not float.
Using round to convert it back
2015-06-04 13:20:17 +02:00
Christoph Heuel
b99c076bae
Fix for string operation
...
* With Python version 3 data and text are treated different. Convert the
* text accordingly.
2015-05-19 02:52:55 +02:00
Christoph Heuel
afc6834082
After running 2to3 tool
2015-05-07 20:54:32 +02:00
manpaz
d93e76e904
Merge pull request #45 from Krispy2009/master
...
Raising the right error when wrong charcode is used
2015-04-21 14:07:36 -07:00
Kristi
f3933d5d20
Merge pull request #1 from Krispy2009/Krispy2009-patch-1
...
Raising the right error when wrong charcode is used
2015-04-20 10:58:49 +01:00
Kristi
517435efad
Raising the right error when wrong charcode is used
2015-04-20 10:58:04 +01:00
Manuel F Martinez
122ff9a363
Updated version
2014-05-20 23:51:39 -07:00
Manuel F Martinez
708f7e97d1
fixed code tabulators
2014-05-20 23:50:06 -07:00
Manuel F Martinez
8a3850ea64
Added quad support
2014-05-20 22:43:40 -07:00
Manuel F Martinez
34f562d64a
Added density support
2014-05-20 22:31:49 -07:00
Manuel F Martinez
2b37185003
Updated version
2014-05-20 22:16:44 -07:00