mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-23 14:19:37 +08:00
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Copyright (c) 2016 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from . import XmlMaterialProfile
|
|
|
|
from UM.MimeTypeDatabase import MimeType, MimeTypeDatabase
|
|
from UM.i18n import i18nCatalog
|
|
catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"plugin": {
|
|
"name": catalog.i18nc("@label", "Material Profiles"),
|
|
"author": "Ultimaker",
|
|
"version": "1.0",
|
|
"description": catalog.i18nc("@info:whatsthis", "Provides capabilities to read and write XML-based material profiles."),
|
|
"api": 3
|
|
},
|
|
"settings_container": {
|
|
"type": "material",
|
|
"mimetype": "application/x-ultimaker-material-profile"
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
mime_type = MimeType(
|
|
name = "application/x-ultimaker-material-profile",
|
|
comment = "Ultimaker Material Profile",
|
|
suffixes = [ "xml.fdm_material" ]
|
|
)
|
|
MimeTypeDatabase.addMimeType(mime_type)
|
|
return { "settings_container": XmlMaterialProfile.XmlMaterialProfile("default_xml_material_profile") }
|
|
|