mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
Added the FirmwareUpdateChecker to Cura - CURA-4224
This commit is contained in:
parent
b3a01d5fcc
commit
b17ff081d6
4 changed files with 134 additions and 0 deletions
14
plugins/FirmwareUpdateChecker/__init__.py
Normal file
14
plugins/FirmwareUpdateChecker/__init__.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Copyright (c) 2015 Ultimaker B.V.
|
||||
# Cura is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
from . import FirmwareUpdateChecker
|
||||
|
||||
i18n_catalog = i18nCatalog("cura")
|
||||
|
||||
def getMetaData():
|
||||
return {
|
||||
}
|
||||
|
||||
def register(app):
|
||||
return { "extension": FirmwareUpdateChecker.FirmwareUpdateChecker()}
|
Loading…
Add table
Add a link
Reference in a new issue