Skip to content

Commit

Permalink
Fix for issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
effgarces committed Feb 3, 2022
1 parent 4db1c29 commit f02f6d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__
output
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Updated 03/02/2022
Fixed issue with PrusaSlicer g-code preview for post processed files (thanks @sarvenn)
A new "compiled" version is provided

Updated 26/12/2021

Added a modified version that complies with PrusaSlicer 2.4
Expand Down
2 changes: 1 addition & 1 deletion biqu_convert_p24.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def do_convert(gfile):
stream = QTextStream(fh)
stream.setCodec(CODEC)
lino = 0
fg = stream.readAll() + "\r\n"
fg = stream.readAll()
fh.close()
bigtree3dfile = gfile
fh = QFile(bigtree3dfile)
Expand Down

0 comments on commit f02f6d1

Please sign in to comment.