mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 08:14:22 +08:00

Since we already have UM.Platform, I think it is worth to get constancy into our code and use UM.Platform for our detection. Additionally, I corrected the head of the file, because I think I shall mention Cura and not Uranium. I guess the plugin was moved to Cura, so this was missed.
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from UM.Platform import Platform
|
|
|
|
from UM.i18n import i18nCatalog
|
|
catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"plugin": {
|
|
"name": catalog.i18nc("@label", "Removable Drive Output Device Plugin"),
|
|
"author": "Ultimaker B.V.",
|
|
"description": catalog.i18nc("@info:whatsthis", "Provides removable drive hotplugging and writing support."),
|
|
"version": "1.0",
|
|
"api": 3
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
if Platform.isWindows():
|
|
from . import WindowsRemovableDrivePlugin
|
|
return { "output_device": WindowsRemovableDrivePlugin.WindowsRemovableDrivePlugin() }
|
|
elif Platform.isOSX():
|
|
from . import OSXRemovableDrivePlugin
|
|
return { "output_device": OSXRemovableDrivePlugin.OSXRemovableDrivePlugin() }
|
|
elif Platform.isLinux():
|
|
from . import LinuxRemovableDrivePlugin
|
|
return { "output_device": LinuxRemovableDrivePlugin.LinuxRemovableDrivePlugin() }
|
|
else:
|
|
Logger.log("e", "Unsupported system, thus no removable device hotplugging support available.")
|
|
return { }
|