mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-12 15:48:05 +08:00
19 lines
549 B
Python
19 lines
549 B
Python
from . import USBPrinterManager
|
|
|
|
from UM.i18n import i18nCatalog
|
|
i18n_catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"type": "extension",
|
|
"plugin": {
|
|
"name": "USB printing",
|
|
"author": "Ultimaker",
|
|
"version": "1.0",
|
|
"description": i18n_catalog.i18nc("USB Printing plugin description","Accepts G-Code and sends them to a printer. Plugin can also update firmware")
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
return {"extension":USBPrinterManager.USBPrinterManager()}
|