From a7ed3ae2aedcb74a351b850dfa035adda08ea05b Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 3 Mar 2015 14:55:00 +0100 Subject: [PATCH] Update plugin metadata to the new format --- __init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 780df89f1f..706676c030 100644 --- a/__init__.py +++ b/__init__.py @@ -4,7 +4,12 @@ from . import CuraEngineBackend from UM.Preferences import Preferences def getMetaData(): - return { "name": "CuraEngine Backend", "type": "Backend" } + return { + 'type': 'backend', + 'plugin': { + 'name': "CuraEngine Backend" + } + } def register(app): Preferences.addPreference("BackendLocation","../PinkUnicornEngine/CuraEngine")