__init__.py 707 B

12345678910111213141516171819202122232425
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from UM.i18n import i18nCatalog
  4. from UM.Platform import Platform
  5. from . import GCodeGzWriter
  6. catalog = i18nCatalog("cura")
  7. def getMetaData():
  8. file_extension = "gcode.gz"
  9. return {
  10. "mesh_writer": {
  11. "output": [{
  12. "extension": file_extension,
  13. "description": catalog.i18nc("@item:inlistbox", "Compressed G-code File"),
  14. "mime_type": "application/gzip",
  15. "mode": GCodeGzWriter.GCodeGzWriter.OutputMode.BinaryMode
  16. }]
  17. }
  18. }
  19. def register(app):
  20. return { "mesh_writer": GCodeGzWriter.GCodeGzWriter() }