Moved certain meta data entries to seperate file

CURA-3856 & CURA-3712
This commit is contained in:
Jaime van Kessel 2017-06-21 11:22:35 +02:00
parent 015c253252
commit 44125d3275
54 changed files with 224 additions and 203 deletions

View file

@ -7,15 +7,7 @@ from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
return {
"plugin": {
"name": catalog.i18nc("@label", "Machine Settings action"),
"author": "fieldOfView",
"version": "1.0",
"description": catalog.i18nc("@info:whatsthis", "Provides a way to change machine settings (such as build volume, nozzle size, etc)"),
"api": 3
}
}
return {}
def register(app):
return { "machine_action": MachineSettingsAction.MachineSettingsAction() }

View file

@ -0,0 +1,8 @@
{
"name": "Machine Settings action",
"author": "fieldOfView",
"version": "1.0.0",
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc)",
"api": 4,
"catalog": "cura"
}