Skip to content

Commit

Permalink
v2022.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
egeakman committed Apr 15, 2022
1 parent 7602aae commit de37002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gcode2zaxe/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def read_gcode():
filament_used = round(
float(line.split(";Filament used:")[1].strip().replace("m", "")), 2
)
gcode_info["filament_used"] = float(filament_used)
gcode_info["filament_used"] = float(filament_used) * 1000

return gcode_info

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def latest_version(package_name):
description="Gcode to Zaxe Converter | executable: g2z",
long_description=long_description,
long_description_content_type="text/markdown",
version="2022.4.8",
version="2022.4.15",
license="AGPLv3",
download_url="https://github.com/egeakman/gcode2zaxe/archive/2022.4.8.tar.gz",
download_url="https://github.com/egeakman/gcode2zaxe/archive/2022.4.15.tar.gz",
packages=find_packages(where=".", exclude=["tests", "resources"]),
python_requires=">=3.5",
entry_points={
Expand Down

0 comments on commit de37002

Please sign in to comment.