__init__.py 606 B

123456789101112131415161718192021
  1. # Copyright (c) 2016 Aldo Hoeben / fieldOfView.
  2. # Cura is released under the terms of the AGPLv3 or higher.
  3. from . import PauseBackend
  4. from UM.i18n import i18nCatalog
  5. catalog = i18nCatalog("cura")
  6. def getMetaData():
  7. return {
  8. "plugin": {
  9. "name": catalog.i18nc("@label", "Auto Save"),
  10. "author": "Ultimaker",
  11. "version": "2.3",
  12. "description": catalog.i18nc("@info:whatsthis", "Adds a button to pause automatic background slicing."),
  13. "api": 3
  14. },
  15. }
  16. def register(app):
  17. return { "extension": PauseBackend.PauseBackend() }