mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Add 'plugins/USBPrinting/' from commit 'b28ca0881a
'
git-subtree-dir: plugins/USBPrinting git-subtree-mainline:3823afd8cc
git-subtree-split:b28ca0881a
This commit is contained in:
commit
63e8cf72a3
10 changed files with 1204 additions and 0 deletions
19
plugins/USBPrinting/__init__.py
Normal file
19
plugins/USBPrinting/__init__.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
from . import USBPrinterManager
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
|
||||
i18n_catalog = i18nCatalog('plugins')
|
||||
|
||||
def getMetaData():
|
||||
return {
|
||||
'type': 'extension',
|
||||
'plugin': {
|
||||
'name': 'USB printing',
|
||||
'author': 'Jaime van Kessel',
|
||||
'version': '1.0',
|
||||
'description': i18n_catalog.i18nc('usb printing description','Accepts G-Code and sends them to a printer. Plugin can also update firmware')
|
||||
}
|
||||
}
|
||||
|
||||
def register(app):
|
||||
return {"extension":USBPrinterManager.USBPrinterManager()}
|
Loading…
Add table
Add a link
Reference in a new issue