Cura/__init__.py
Jaime van Kessel 4817c05a52 Renamed plugin
2016-04-18 16:32:02 +02:00

20 lines
560 B
Python

# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.
from . import NetworkPrinterOutputDevicePlugin
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
return {
"plugin": {
"name": "Wifi connection",
"author": "Ultimaker",
"description": catalog.i18nc("Wifi connection", "Wifi connection"),
"api": 2
}
}
def register(app):
return { "output_device": NetworkPrinterOutputDevicePlugin.WifiOutputDevicePlugin()}