Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2017-06-21 12:22:35 +0300
committerJaime van Kessel <nallath@gmail.com>2017-06-21 12:22:35 +0300
commit44125d327550c2ffd34b82625eafa34409a964d2 (patch)
tree6bc37be1f1c3a59559271ea9ecac0db80f9e6879 /plugins/X3DReader
parent015c253252ffb7235a45e86d060a3c496338656e (diff)
Moved certain meta data entries to seperate file
CURA-3856 & CURA-3712
Diffstat (limited to 'plugins/X3DReader')
-rw-r--r--plugins/X3DReader/__init__.py7
-rw-r--r--plugins/X3DReader/plugin.json8
2 files changed, 8 insertions, 7 deletions
diff --git a/plugins/X3DReader/__init__.py b/plugins/X3DReader/__init__.py
index 84922f627f..9e0e2df91c 100644
--- a/plugins/X3DReader/__init__.py
+++ b/plugins/X3DReader/__init__.py
@@ -7,13 +7,6 @@ catalog = i18nCatalog("cura")
def getMetaData():
return {
- "plugin": {
- "name": catalog.i18nc("@label", "X3D Reader"),
- "author": "Seva Alekseyev",
- "version": "0.5",
- "description": catalog.i18nc("@info:whatsthis", "Provides support for reading X3D files."),
- "api": 3
- },
"mesh_reader": [
{
"extension": "x3d",
diff --git a/plugins/X3DReader/plugin.json b/plugins/X3DReader/plugin.json
new file mode 100644
index 0000000000..7ada28e19d
--- /dev/null
+++ b/plugins/X3DReader/plugin.json
@@ -0,0 +1,8 @@
+{
+ "name": "X3D Reader",
+ "author": "Seva Alekseyev",
+ "version": "0.5",
+ "description": "Provides support for reading X3D files.",
+ "api": 4,
+ "catalog": "cura"
+} \ No newline at end of file