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/VersionUpgrade/VersionUpgrade25to26
parent015c253252ffb7235a45e86d060a3c496338656e (diff)
Moved certain meta data entries to seperate file
CURA-3856 & CURA-3712
Diffstat (limited to 'plugins/VersionUpgrade/VersionUpgrade25to26')
-rw-r--r--plugins/VersionUpgrade/VersionUpgrade25to26/__init__.py7
-rw-r--r--plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json8
2 files changed, 8 insertions, 7 deletions
diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/__init__.py b/plugins/VersionUpgrade/VersionUpgrade25to26/__init__.py
index 5ff589c4e3..a3d2b274da 100644
--- a/plugins/VersionUpgrade/VersionUpgrade25to26/__init__.py
+++ b/plugins/VersionUpgrade/VersionUpgrade25to26/__init__.py
@@ -10,13 +10,6 @@ upgrade = VersionUpgrade25to26.VersionUpgrade25to26()
def getMetaData():
return {
- "plugin": {
- "name": catalog.i18nc("@label", "Version Upgrade 2.5 to 2.6"),
- "author": "Ultimaker",
- "version": "1.0",
- "description": catalog.i18nc("@info:whatsthis", "Upgrades configurations from Cura 2.5 to Cura 2.6."),
- "api": 3
- },
"version_upgrade": {
# From To Upgrade function
("preferences", 4000000): ("preferences", 4000001, upgrade.upgradePreferences),
diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
new file mode 100644
index 0000000000..180a2bb056
--- /dev/null
+++ b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
@@ -0,0 +1,8 @@
+ {
+ "name": "Version Upgrade 2.5 to 2.6",
+ "author": "Ultimaker",
+ "version": "1.0",
+ "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
+ "api": 4,
+ "catalog": "cura"
+} \ No newline at end of file