Added the FirmwareUpdateChecker to Cura - CURA-4224

This commit is contained in:
Diego Prado Gesto 2017-09-11 09:35:27 +02:00
parent b3a01d5fcc
commit b17ff081d6
4 changed files with 134 additions and 0 deletions

View 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()}