mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-10 00:07:51 -06:00
Added PauseBackendPlugin, added to changelog. CURA-3361
This commit is contained in:
parent
c2bf88751e
commit
3d1e5a84fc
10 changed files with 888 additions and 1 deletions
21
plugins/PauseBackendPlugin/__init__.py
Normal file
21
plugins/PauseBackendPlugin/__init__.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Copyright (c) 2016 Aldo Hoeben / fieldOfView.
|
||||
# Cura is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
from . import PauseBackend
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
catalog = i18nCatalog("cura")
|
||||
|
||||
def getMetaData():
|
||||
return {
|
||||
"plugin": {
|
||||
"name": catalog.i18nc("@label", "Auto Save"),
|
||||
"author": "Ultimaker",
|
||||
"version": "2.3",
|
||||
"description": catalog.i18nc("@info:whatsthis", "Adds a button to pause automatic background slicing."),
|
||||
"api": 3
|
||||
},
|
||||
}
|
||||
|
||||
def register(app):
|
||||
return { "extension": PauseBackend.PauseBackend() }
|
Loading…
Add table
Add a link
Reference in a new issue