diff --git a/README.md b/README.md index 03c2d2c..e76e8b1 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ tfischer73 drunsinn WouterElfrink +kekec14 ## Compatibility Since there are a lot of different software versions and machine configurations out there @@ -49,6 +50,7 @@ on programming stations but also with real hardware. Here is a list of versions |-------------|----------------| | TNC640 | 340595 08 SP1 | | iTNC530 | 340480 14 SP4 | +| iTNC530 | 606420 02 SP14 | If you have tested it on one of your machines with a different software version, please let us know! diff --git a/pyLSV2/__init__.py b/pyLSV2/__init__.py index bf10dbc..aaba6f9 100644 --- a/pyLSV2/__init__.py +++ b/pyLSV2/__init__.py @@ -3,4 +3,4 @@ """A pure Python3 implementation of the LSV2 protocol""" from .client import LSV2 -__version__ = '0.6.3' +__version__ = '0.6.4' diff --git a/pyLSV2/client.py b/pyLSV2/client.py index 89bb15f..efa0aab 100644 --- a/pyLSV2/client.py +++ b/pyLSV2/client.py @@ -1174,7 +1174,7 @@ def recive_file(self, remote_path, local_path, override_file=False, binary_mode= if binary_mode: out_file.write(content) else: - out_file.write(content.replace(b'\x00', b'')) + out_file.write(content.replace(b'\x00', b'\r\n')) logging.debug( 'received %d more bytes for file', len(content)) elif response in self.RESPONSE_T_FD: